Skip to content

Commit

Permalink
change: Only test on new LTS and above (#105)
Browse files Browse the repository at this point in the history
* change: Only test on new LTS and above
  • Loading branch information
kshyatt-aws authored Oct 9, 2024
1 parent 2efe7c3 commit 1716cfc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@v2
with:
version: 1.9
version: '1.10'
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- run: |
Expand Down Expand Up @@ -69,12 +69,12 @@ jobs:
group:
- Braket-unit
- PyBraket-unit
version: ['1.6', '1.7', '1.8', '1.9', '1.10', 'nightly']
version: ['1.10', '1.11', 'nightly']
arch: ['x64']
steps:
- uses: actions/checkout@v1
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand Down Expand Up @@ -110,12 +110,12 @@ jobs:
matrix:
group:
- Examples-unit
version: ['1.9']
version: ['1.10']
arch: ['x64']
steps:
- uses: actions/checkout@v1
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1.10'
- uses: julia-actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.6'
version: '1.10'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
30 changes: 15 additions & 15 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,36 @@ AWS = "=1.92.0"
AWSS3 = "=0.11.2"
Aqua = "=0.8"
AxisArrays = "=0.4.7"
Base64 = "1.6"
Base64 = "1"
CSV = "=0.10.14"
CodeTracking = "=1.3.6"
Compat = "=4.16.0"
DataStructures = "=0.18.20"
Dates = "1.6"
Dates = "1"
DecFP = "=1.3.2"
Distributed = "1.6"
Distributed = "1"
Distributions = "=0.25.76"
Downloads = "1"
Graphs = "=1.11.2"
Graphs = "=1.12.0"
HTTP = "=1.10.8"
InteractiveUtils = "1.6"
JLD2 = "=0.5.4"
InteractiveUtils = "1"
JLD2 = "=0.5.5"
JSON3 = "=1.14.0"
LinearAlgebra = "1.6"
Logging = "1.6"
LinearAlgebra = "1"
Logging = "1"
Markdown = "=0.7.5"
Mocking = "=0.8.1"
NamedTupleTools = "=0.14.3"
OrderedCollections = "=1.6.3"
Pkg = "1.6"
Random = "1.6"
SparseArrays = "1.6"
Pkg = "1"
Random = "1"
SparseArrays = "1"
StaticArrays = "=1.9.7"
Statistics = "1.6"
Statistics = "1"
StructTypes = "=1.11.0"
Tar = "1.9.3"
Test = "1.6"
UUIDs = "1.6"
Tar = "1"
Test = "1"
UUIDs = "1"
julia = "1.6"

[extras]
Expand Down

0 comments on commit 1716cfc

Please sign in to comment.