Skip to content

Commit

Permalink
Merge pull request #11 from metaplex-foundation/feature/ci-fix
Browse files Browse the repository at this point in the history
CI - using required rust version
  • Loading branch information
StanChe authored Dec 21, 2023
2 parents 5e41823 + 3d05320 commit 928731c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,19 @@ jobs:
steps:
- uses: actions/checkout@v2

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

- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
args: --all -- --check

- name: Lint with Clippy
uses: actions-rs/clippy-check@v1
Expand Down

0 comments on commit 928731c

Please sign in to comment.