Skip to content

Commit

Permalink
ci: Update Package Lists
Browse files Browse the repository at this point in the history
The Lint CI steps are failing due to a missing mirror. Added the apt update command to fix this.
  • Loading branch information
JamesMc86 committed Apr 2, 2024
1 parent 4a9b537 commit a9a6b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 34,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with: {toolchain: '${{matrix.rust}}', components: 'rustfmt, clippy'}
- name: Install HDF5
run: sudo apt-get install libhdf5-dev
run: sudo apt-get update && sudo apt-get install libhdf5-dev
- name: Run cargo ${{matrix.command}}
run: cargo ${{matrix.command}} ${{matrix.command == 'fmt' && '--all -- --check' || '--workspace --exclude hdf5-src -- -D warnings -D clippy::cargo -A clippy::multiple-crate-versions'}}

Expand Down

0 comments on commit a9a6b70

Please sign in to comment.