Skip to content

Add CI

Add CI #2

Workflow file for this run

name: Rust
on:
push:
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all-targets --all-features --verbose
- name: Run tests
run: cargo test --all-targets --all-features --verbose
- name: Run clippy
run: cargo clippy --all-targets --all-features