Wojciech Kozlowski
3137fffac6
Some checks failed
Cargo CI / Pipeline (pull_request) Failing after 53s
22 lines
499 B
YAML
22 lines
499 B
YAML
name: Cargo CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
pipeline:
|
|
name: Pipeline
|
|
container: docker.io/drrobot/musichoard-ci:rust-1.75
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: cargo build --verbose --all-features --all-targets
|
|
- run: cargo test --verbose --all-features --lib --bins
|
|
- run: cargo clippy --verbose --all-features -- -D warnings
|
|
- run: cargo fmt --verbose -- --check
|