Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yshavit committed Jun 8, 2024
1 parent e0ee5c0 commit 78e1f6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ jobs:

check:
runs-on: ubuntu-latest
depends-on: build
needs: build
steps:
- uses: actions/checkout@v4
- name: cargo check
run: .github/workflows/cargo_to_gh check

test:
runs-on: ubuntu-latest
depends-on: build
needs: build
steps:
- uses: actions/checkout@v4
- name: cargo test
run: cargo test --verbose

fmt:
depends-on: build
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 78e1f6a

Please sign in to comment.