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

15
.github/workflows/rustfmt.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: Rustfmt
on:
push:
branches:
- rolling
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}