Merge branch 'master' of github.com:mre/mos6502

This commit is contained in:
Matthias 2022-06-07 20:17:48 +02:00
commit cdb2f0949a
1 changed files with 11 additions and 0 deletions

View File

@ -18,6 +18,17 @@ jobs:
with:
toolchain: stable
override: true
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy (deny warnings)
uses: actions-rs/cargo@v1
with:
command: clippy
# --all-targets makes it lint tests too
args: --all-targets -- --deny warnings
- name: Run test
uses: actions-rs/cargo@v1
with: