Skip to content

Commit

Permalink
fix(CI): Run only on julia v^1.6 and fix coveralls upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kunzaatko committed Oct 29, 2023
1 parent 437498c commit 26d5050
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.0'
- '1.6' # oldest possible version
- '1.9'
- 'nightly'
os:
Expand All @@ -29,16 +29,18 @@ jobs:
- x64
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-uploadcoveralls@v1
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
- uses: julia-actions/julia-processcoverage@v1
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down
10 changes: 1 addition & 9 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,4 @@ authors = ["Martin Kunz <[email protected]> and contributors"]
version = "1.0.0-DEV"

[compat]
Aqua = "0.7"
julia = "1"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Aqua", "Test"]
julia = "^1.6"

0 comments on commit 26d5050

Please sign in to comment.