Skip to content

Configurable print streams #52

Configurable print streams

Configurable print streams #52

Workflow file for this run

name: MSRV default features build test (1.66)
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main", "develop" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Default features with rustc ${{ matrix.toolchain }}
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- 1.66
- stable
- beta
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose