mirror of
https://github.com/RGBCube/dix
synced 2025-08-02 14:47:46 +00:00
20 lines
348 B
YAML
20 lines
348 B
YAML
name: Cargo Build & Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ $default-branch ]
|
|
pull_request:
|
|
branches: [ $default-branch ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build_and_test:
|
|
name: dix - latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: cargo build --verbose
|
|
- run: cargo test --verbose
|
|
|