name: Build and test
on:
env:
CARGO_TERM_COLOR: always
jobs:
build_x86-64:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --workspace --all-features --verbose
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
steps:
- uses: actions/checkout@v2
- name: Run all tests
run: cargo test --workspace --verbose