Skip to content

Commit

Permalink
Revert "Update .github/workflows/unit_test.yml"
Browse files Browse the repository at this point in the history
This reverts commit a8a6f48.
  • Loading branch information
jbernal87 committed Aug 28, 2024
1 parent a8a6f48 commit 90caeaf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v2
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
Expand All @@ -23,7 +23,7 @@ jobs:
components: llvm-tools-preview

- name: Run Tests
uses: actions-rs/cargo@v2
uses: actions-rs/cargo@v1
with:
command: test

Expand All @@ -32,24 +32,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v2
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.78.0
override: true
components: rustfmt, clippy

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

- name: Run cargo clippy
uses: actions-rs/cargo@v2
uses: actions-rs/cargo@v1
with:
command: clippy
args: --tests -- -D warnings

0 comments on commit 90caeaf

Please sign in to comment.