Skip to content

Commit

Permalink
chore: upgrade rust
Browse files Browse the repository at this point in the history
  • Loading branch information
gorgos committed Feb 13, 2024
1 parent 1767ed3 commit 1334665
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.69.0
toolchain: 1.74.0
target: wasm32-unknown-unknown
override: true
components: llvm-tools-preview
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
toolchain: 1.69.0
toolchain: 1.74.0
args: --locked --tests
env:
LLVM_PROFILE_FILE: "swap-converter-%p-%m.profraw"
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './target/debug/coverage/'
path: "./target/debug/coverage/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Expand All @@ -98,7 +98,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.69.0
toolchain: 1.74.0
override: true
components: rustfmt, clippy

Expand All @@ -123,13 +123,13 @@ jobs:
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
toolchain: 1.69.0
toolchain: 1.74.0
command: fmt
args: --all -- --check

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

0 comments on commit 1334665

Please sign in to comment.