Skip to content

Commit

Permalink
move cargo vet to separate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJOHN974 committed Nov 12, 2024
1 parent c203993 commit 68bd883
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/cargo-vet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Cargo Vet
on: [push]

concurrency:
# limit concurrency of entire workflow runs for a specific branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
cargo-vet:
name: Run Unit Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4

- name: Run vetting
run: make vet
3 changes: 0 additions & 3 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ jobs:
- name: Run lints
run: make lint

- name: Run vetting
run: make vet

- name: Run tests
run: make test-ci

Expand Down

0 comments on commit 68bd883

Please sign in to comment.