Skip to content

Merge pull request #1 from opera-eadelhult/main #12

Merge pull request #1 from opera-eadelhult/main

Merge pull request #1 from opera-eadelhult/main #12

Workflow file for this run

on: [push]
name: Rust Build
jobs:
build_and_test:
name: Build and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup install stable
- run: RUSTFLAGS="-D warnings" cargo clippy # -- -Wclippy::pedantic
- run: RUSTFLAGS="-D warnings" cargo build --color=always --all-features
- run: cargo test --color=always