2020-03-29 09:33:16 +00:00
|
|
|
name: rust
|
2019-09-21 11:10:55 +00:00
|
|
|
|
|
|
|
# Trigger the workflow on push or pull request
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2020-03-29 09:33:16 +00:00
|
|
|
rustfmt:
|
|
|
|
name: rustfmt
|
2020-02-23 17:53:47 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
2020-03-25 13:56:46 +00:00
|
|
|
with:
|
|
|
|
profile: minimal
|
2020-03-29 09:33:16 +00:00
|
|
|
toolchain: nightly
|
2020-03-25 13:56:46 +00:00
|
|
|
override: true
|
2020-03-29 09:33:16 +00:00
|
|
|
components: rustfmt
|
2020-02-23 17:53:47 +00:00
|
|
|
- uses: actions-rs/cargo@v1
|
2020-03-25 13:56:46 +00:00
|
|
|
with:
|
2020-03-29 09:33:16 +00:00
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
2020-02-23 17:53:47 +00:00
|
|
|
|
2020-03-29 09:33:16 +00:00
|
|
|
clippy:
|
|
|
|
name: clippy
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
2020-03-25 13:56:46 +00:00
|
|
|
with:
|
2020-03-29 09:33:16 +00:00
|
|
|
profile: minimal
|
|
|
|
toolchain: nightly
|
|
|
|
override: true
|
|
|
|
components: clippy
|
2020-02-23 17:53:47 +00:00
|
|
|
- uses: actions-rs/cargo@v1
|
2020-03-25 13:56:46 +00:00
|
|
|
with:
|
2020-03-29 09:33:16 +00:00
|
|
|
command: clippy
|