mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-25 15:38:21 -05:00
16 lines
293 B
YAML
16 lines
293 B
YAML
|
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 }}
|