Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop testing with Julia 1.4 and 1.5 #514

Merged
merged 1 commit into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/pkg-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ jobs:
uses: tkf/julia-update-manifests@v1
with:
version: '1.6'
projects: docs
- name: Update */Manifest.toml (1.4)
uses: tkf/julia-update-manifests@v1
with:
version: '1.4'
projects: test/environments/main
projects: test/environments/main docs
- name: Update */Manifest.toml (1.7)
uses: tkf/julia-update-manifests@v1
with:
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
julia-version:
- '1.7'
- '1.6'
- '1.5'
- '1.4'
- 'nightly'
envname: ["main"]
include:
Expand All @@ -39,3 +37,14 @@ jobs:
file: ./lcov.info
flags: Run.test
name: codecov-umbrella

# A job that succeeds if and only if all jobs in `test` succeed.
all-success:
if: always() && github.event.pull_request
needs: test
runs-on: ubuntu-latest
steps:
# https://github.com/tkf/merge-conclusions-action
- uses: tkf/merge-conclusions-action@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}