Skip to content

Change the with files on the release pipeline #53

Change the with files on the release pipeline

Change the with files on the release pipeline #53

Workflow file for this run

name: Rust
on: [push]
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run Clippy
run: cargo clippy --all-targets --all-features
- name: Run tests
run: cargo test --verbose