Use my own flavor of GitHub workflows
This commit is contained in:
parent
59a3ecef65
commit
ba9d0ba054
5 changed files with 50 additions and 22 deletions
12
.github/workflows/lint.yml
vendored
Normal file
12
.github/workflows/lint.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: Lint
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
all:
|
||||
runs-on: macOS-latest
|
||||
steps:
|
||||
- uses: hecrj/setup-rust-action@v2
|
||||
with:
|
||||
components: clippy
|
||||
- uses: actions/checkout@master
|
||||
- name: Check lints
|
||||
run: cargo clippy --workspace --no-deps
|
Loading…
Add table
Add a link
Reference in a new issue