28 lines
491 B
YAML
28 lines
491 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Run tests
|
|
run: cargo test
|
|
|
|
- name: Build
|
|
run: cargo build --release
|
|
|
|
- name: Clippy
|
|
run: cargo clippy --all-features -- -D warnings
|