Various small changes while preparing to improve type checking #271
Workflow file for this run
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: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-11, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Rust Format | |
run: cargo fmt --all -- --check | |
- name: Build | |
run: cargo build --release --verbose | |
- name: Clippy | |
run: cargo clippy --all-targets -- -D warnings -D clippy::dbg_macro | |
- name: Run tests | |
run: cargo test --verbose -- --skip sourcegen_ast --skip sourcegen_ast_nodes | |
msrv: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-11, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@1.70 | |
- name: Build | |
run: cargo build --release --verbose | |
- name: Run tests | |
run: cargo test --verbose --lib --tests -- --skip sourcegen_ast --skip sourcegen_ast_nodes |