Skip to content

Commit

Permalink
Update rust version in CI to 1.72.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maurolacy committed Oct 18, 2023
1 parent 080cfbf commit 78cfcfc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.69.0
toolchain: 1.72.0
target: wasm32-unknown-unknown
override: true

- name: Run unit tests
uses: actions-rs/cargo@v1
with:
command: unit-test
toolchain: 1.69.0
toolchain: 1.72.0
args: --locked
env:
RUST_BACKTRACE: 1
Expand All @@ -56,20 +56,20 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.69.0
toolchain: 1.72.0
override: true
components: rustfmt, clippy

- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
toolchain: 1.69.0
toolchain: 1.72.0
args: --all -- --check

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
toolchain: 1.69.0
toolchain: 1.72.0
args: -- -D warnings

0 comments on commit 78cfcfc

Please sign in to comment.