2023-04-10 11:15:03 -07:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
name: CI
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
name: Daisy
|
2023-04-10 11:26:26 -07:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-10 11:15:03 -07:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: build
|
2023-04-10 11:40:38 -07:00
|
|
|
args: --release --all-features
|
2023-04-10 11:41:08 -07:00
|
|
|
- uses: actions-rs/cargo@v1
|
2023-04-10 11:40:38 -07:00
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --release
|