Skip to content

Commit

Permalink
set correct rust version for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitznik committed Oct 3, 2024
1 parent 672a39e commit 2f1172f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: 1.79.0
override: true

- name: Run cargo check
Expand All @@ -29,11 +29,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: 1.79.0
override: true

- name: Run cargo test
Expand All @@ -48,11 +48,11 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: 1.79.0
override: true
components: rustfmt, clippy

Expand Down

0 comments on commit 2f1172f

Please sign in to comment.