Skip to content

Improve Exports (BREAKING) (#14) #38

Improve Exports (BREAKING) (#14)

Improve Exports (BREAKING) (#14) #38

Workflow file for this run

name: Build & Test
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: Lint and format sources
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo check
- run: cargo verify-project
- run: cargo fmt --check
unittests:
name: Build and run unittests
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose