ci: add rust specific ci and auto-gen oss standard labels

This commit is contained in:
neon_arch 2023-05-13 19:16:15 +03:00
parent 58a3527a69
commit 3be13d0ab6
7 changed files with 89 additions and 5 deletions

16
.github/workflows/clippy.yml vendored Normal file
View 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