CI: build and test all targets

This commit is contained in:
Joakim Frostegård 2021-08-17 13:10:01 +02:00
parent 562c0eabd4
commit 48e0bc7ade

View file

@ -1,4 +1,4 @@
name: CargoBuildAndTest name: 'cargo: build and test'
on: on:
push: push:
@ -17,6 +17,6 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose --workspace --all-targets
- name: Run tests - name: Run tests
run: cargo test --verbose run: cargo test --verbose --workspace --all-targets