fixed: added uses command

This commit is contained in:
p0lunin 2020-07-02 15:57:06 +03:00
parent 932ee2e5f1
commit 1db10b2379

View file

@ -7,6 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Cargo fmt
run: cargo +nightly fmt --all -- --check
- name: Cargo clippy