Skip to content

chore: use RUSTFLAGS to uplift warnings #32

chore: use RUSTFLAGS to uplift warnings

chore: use RUSTFLAGS to uplift warnings #32

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
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
- run: cargo build
- run: cargo test