Skip to content

Commit

Permalink
expand compat to cover lts
Browse files Browse the repository at this point in the history
  • Loading branch information
awadell1 committed Jul 16, 2024
1 parent 98c3fec commit 4d6a2ba
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
version:
- lts
- '1.9'
- release
- rc
os:
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: julia-actions/install-juliaup@v2
with:
channel: ${{ matrix.version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-uploadcoveralls@v1
Expand All @@ -40,7 +40,8 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/install-juliaup@v2
with:
channel: lts
channel: "1.9"
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-downgrade-compat@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
Expand All @@ -53,7 +54,7 @@ jobs:
- uses: julia-actions/install-juliaup@v2
with:
channel: release
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@v2
- uses: "./"
with:
prefix: "cd test/Example.jl &&"
Expand All @@ -63,11 +64,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/cache@v1
- uses: julia-actions/install-juliaup@v2
with:
channel: lts
- uses: julia-actions/cache@v1
channel: "1.10"
- uses: julia-actions/cache@v2
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
20 changes: 10 additions & 10 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ BSON = "0.3"
BenchmarkTools = "1.5"
CUDA = "5"
CodecZlib = "0.7"
Compat = "4.11, 4.15"
Dates = "1.9"
Compat = "4.11, 4"
Dates = "1.9, 1.10"
JSON = "0.21"
LibGit2 = "1.9"
NVTX = "0.3"
Pkg = "1.9"
Profile = "1.9"
LibGit2 = "1.9, 1.10"
NVTX = "0.3.2"
Pkg = "1.9, 1.10"
Profile = "1.9, 1.10"
Revise = "3"
Statistics = "1.9"
Test = "1.9"
UUIDs = "1.9"
julia = "1.9"
Statistics = "1.9, 1.10"
Test = "1.9, 1.10"
UUIDs = "1.9, 1.10"
julia = "1.9, 1.10"

[extras]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
Expand Down

0 comments on commit 4d6a2ba

Please sign in to comment.