Skip to content

Commit

Permalink
switch to stable
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Feb 20, 2024
1 parent 65b9b78 commit e585f72
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 e585f72

Please sign in to comment.