Skip to content

Commit af1ed00

Browse files
committed
feat(gha): check cargo vet
1 parent 08609ed commit af1ed00

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,19 @@ jobs:
9090
with:
9191
dry-run: true
9292
ignore-unpublished-changes: false
93+
94+
check-vet:
95+
strategy:
96+
matrix:
97+
os: [ ubuntu-latest ]
98+
runs-on: ${{ matrix.os }}
99+
100+
steps:
101+
- name: Checkout repo
102+
uses: actions/checkout@v4
103+
104+
- name: Setup devenv
105+
uses: andyl-technologies/github-actions/setup-devenv@master
106+
107+
- name: Run vet
108+
run: devenv shell cargo vet --locked

0 commit comments

Comments
 (0)