main
1name: CI
2on:
3 push:
4 branches: [ "main" ]
5 pull_request:
6 branches: [ "main" ]
7env:
8 CARGO_TERM_COLOR: always
9jobs:
10 build:
11 runs-on: ubuntu-latest
12 steps:
13 - uses: actions/checkout@v4
14 - run: cargo build --verbose
15 - run: cargo test --verbose
16