nectar/.github/workflows/main.yml

16 lines
305 B
YAML
Raw Normal View History

2023-10-02 23:02:53 +03:00
name: Rustfmt
on: push
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-11-02 00:11:20 +03:00
- uses: dtolnay/rust-toolchain@nightly
2023-11-02 00:13:06 +03:00
with:
components: rustfmt
2023-10-02 23:02:53 +03:00
- uses: mbrobbel/rustfmt-check@master
with:
2023-11-02 00:11:20 +03:00
token: ${{ secrets.GITHUB_TOKEN }}