Skip to content

Commit

Permalink
Merge pull request #49 from striezel-stash/actions-update
Browse files Browse the repository at this point in the history
update GitHub Actions CI
  • Loading branch information
Tehforsch authored Jan 4, 2024
2 parents cd95d72 + 667c8d4 commit 4c18858
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ jobs:
RUSTFLAGS: -D warnings
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
uses: dtolnay/rust-toolchain@nightly
- name: Install hdf5 libraries
run: |
sudo apt-get update
Expand All @@ -43,12 +40,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@nightly
with:
override: true
toolchain: nightly
components: clippy
- name: Install hdf5 libraries
run: |
Expand All @@ -65,12 +60,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@nightly
with:
override: true
toolchain: nightly
components: rustfmt
- name: Run rustfmt
run: cargo fmt -- --check

0 comments on commit 4c18858

Please sign in to comment.