Skip to content

Commit

Permalink
Merge pull request #91 from public-awesome/jhernandezb/switch-to-stable
Browse files Browse the repository at this point in the history
switch rust toolchain to stable
  • Loading branch information
jhernandezb authored Feb 20, 2024
2 parents 65b9b78 + e585f72 commit ad8f7b4
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 @@ -10,11 +10,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install latest nightly toolchain
- name: Install latest stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
target: wasm32-unknown-unknown
override: true

Expand Down Expand Up @@ -55,20 +55,20 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
override: true
components: rustfmt, clippy

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

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
toolchain: nightly
toolchain: stable
command: clippy
args: --all-targets -- -D warnings

0 comments on commit ad8f7b4

Please sign in to comment.