Spaces:
Runtime error
Runtime error
File size: 339 Bytes
3be13d0 a569f07 3be13d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
name: Rustfmt
on:
push:
branches:
- "**"
pull_request:
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 }}
|