2022-05-10 08:07:38 -04:00
|
|
|
name: CI
|
2022-05-10 07:59:10 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-05-10 08:07:38 -04:00
|
|
|
branches: [main]
|
2022-05-10 07:59:10 -04:00
|
|
|
pull_request:
|
2022-05-10 08:07:38 -04:00
|
|
|
branches: [main]
|
2022-05-10 07:59:10 -04:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-07-29 09:44:41 -04:00
|
|
|
- uses: actions/checkout@v4
|
2022-05-10 08:07:38 -04:00
|
|
|
- name: Build
|
2024-07-29 09:44:41 -04:00
|
|
|
run: cargo build --all-targets --verbose
|
2022-05-10 08:07:38 -04:00
|
|
|
- name: Run tests
|
|
|
|
run: cargo test --verbose
|