Skip to content

Commit

Permalink
Update to try to prevent version issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lxmota committed Feb 19, 2025
1 parent 2b56d7b commit da58a2b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,17 @@ jobs:
with:
version: ${{ matrix.julia-version }}

# Step 3: Install dependencies
# Step 3: Remove existing Manifest.toml
- name: Remove existing Manifest.toml
run: rm -f Manifest.toml

# Step 4: Install dependencies
- name: Install dependencies
run: |
julia --project=. -e 'using Pkg; Pkg.instantiate()'
# Step 4: Run the tests
# Step 5: Run the tests
- name: Run tests
run: |
julia --project=. -e 'using Pkg; Pkg.test()'

0 comments on commit da58a2b

Please sign in to comment.