1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-05 10:29:31 +00:00

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

This commit is contained in:
Matthias 2022-06-07 20:17:48 +02:00
commit cdb2f0949a

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: