Skip to content

chore: test documentation and add comments #33

chore: test documentation and add comments

chore: test documentation and add comments #33

Workflow file for this run

name: Mexx - Continuous Integration
on:
- push
- pull_request
env:
RUSTFLAGS: -D warnings # treat warnings as errors
CARGO_TERM_COLOR: always # use colors when printing
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
- 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