musichoard/.gitea/workflows/gitea-ci.yaml
Wojciech Kozlowski 468c0a5f46
All checks were successful
Cargo Build and Test / Build and Test (pull_request) Successful in 1m53s
Exclude integration tests for now
2024-01-06 10:32:56 +01:00

20 lines
413 B
YAML

name: Cargo Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build and Test
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