ci: add rust specific ci and auto-gen oss standard labels
This commit is contained in:
parent
58a3527a69
commit
3be13d0ab6
7 changed files with 89 additions and 5 deletions
16
.github/workflows/clippy.yml
vendored
Normal file
16
.github/workflows/clippy.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Clippy check
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- rolling
|
||||
|
||||
jobs:
|
||||
clippy_check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- run: rustup component add clippy
|
||||
- uses: actions-rs/clippy-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
args: --all-features
|
Loading…
Add table
Add a link
Reference in a new issue