1
0

19 lines
297 B
YAML
Raw Permalink Normal View History

2025-02-17 15:36:59 -05:00
name: Cargo Build & Test
2025-02-12 18:41:04 -05:00
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
2025-02-17 15:36:59 -05:00
build_and_test:
name: Dust Build & Test
2025-02-12 18:41:04 -05:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2025-02-17 15:36:59 -05:00
- run: cargo build --verbose
- run: cargo test --verbose --no-fail-fast