Skip to content

v0.9.0

v0.9.0 #9

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build (--features full)
run: cargo build --verbose --features full
- name: Run tests (--features full)
run: cargo test --verbose --features full