feat: add move-mutation-test tool #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic check and lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
basic-lint-and-check: | |
runs-on: ubuntu-latest | |
name: Basic ci-check for fmt/clippy/check | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install required deps | |
run: sudo apt-get install libudev-dev libdw-dev | |
- name: Setup Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: nightly | |
- name: Run check | |
run: cargo +nightly check --all-targets | |
- name: Run fmt | |
run: cargo +nightly fmt --all -- --check | |
- name: Run clippy | |
run: cargo +nightly clippy --all-targets -- -D warnings |