Skip to content

Commit

Permalink
yml file changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Coder-Harshit committed Sep 9, 2024
1 parent 6a70126 commit ca2d54f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,23 @@ jobs:
steps:
- name: Checkout
uses: actions/[email protected]
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true

- name: Install Rust toolchain
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}

- name: Verify Rust installation
run: rustc --version && cargo --version
# - name: Cargo Clean
# run: cargo clean

- name: Build
run: cargo build --release --verbose

- name: Run tests
run: cargo test --verbose

0 comments on commit ca2d54f

Please sign in to comment.