chore: remove some debug stuff #310
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: Mexx - Continuous Integration | |
on: | |
- push | |
- pull_request | |
env: | |
# treat warnings as errors | |
RUSTFLAGS: -D warnings | |
RUSTDOCFLAGS: -D warnings | |
# use colors when printing | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
name: Cargo - Build & Test - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
# update rust to latest stable version | |
- run: rustup update stable && rustup default stable | |
- run: cargo clippy # look for lint errors | |
- run: cargo build # look for build errors | |
- run: cargo test # look for test errors | |
- run: cargo doc # look for bad documentation |