Skip to content

add Apache 2.0 license #113

add Apache 2.0 license

add Apache 2.0 license #113

Workflow file for this run

name: Rust
on: ['push', 'pull_request']
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose --all-features