Skip to content

Commit

Permalink
Merge pull request #1 from eth-vaw-glaciology/lr/update
Browse files Browse the repository at this point in the history
Update test strategy and CI
  • Loading branch information
mauro3 authored Oct 31, 2023
2 parents 4ccdf2b + d1210ee commit 61b820a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.6']
julia-version: ['1.9']
julia-arch: [x64]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: actions/cache@v1
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
Expand All @@ -27,6 +27,6 @@ jobs:
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- run: julia --check-bounds=yes --color=yes -e 'cd("subfolder");
import Pkg; Pkg.activate("."); Pkg.test()'
- uses: julia-actions/julia-buildpkg@latest
- run: julia --color=yes -e 'cd("subfolder");
import Pkg; Pkg.activate("."); Pkg.test()'
3 changes: 3 additions & 0 deletions subfolder/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
.vscode
Manifest.toml
5 changes: 0 additions & 5 deletions subfolder/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,3 @@ name = "L6Testing"
uuid = "44c933c6-7d10-4379-b2cf-b211c6f3d331"
authors = ["Mauro Werder <[email protected]>"]
version = "0.1.0"

[deps]
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
ReferenceTests = "324d217c-45ce-50fc-942e-d289b448e8cf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4 changes: 4 additions & 0 deletions subfolder/test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[deps]
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
ReferenceTests = "324d217c-45ce-50fc-942e-d289b448e8cf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 comments on commit 61b820a

Please sign in to comment.