Files
dcb/.github/workflows/rust.yml
Filipe Rodrigues 26cec2a0c5 Added all data about arenas in city00.msd.
Now not running clippy until fuse building errors can be addressed.
2021-08-06 23:40:19 +01:00

27 lines
596 B
YAML

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install minimal nightly with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
#- name: Clippy
# run: cargo +nightly clippy --verbose
#- name: Run tests
# run: cargo +nightly test --verbose
- name: Rust Fmt
run: cargo +nightly fmt --verbose -- --check