Skip to content

Fix compilation in release profile #61

Fix compilation in release profile

Fix compilation in release profile #61

Workflow file for this run

name: Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: [stable, beta, nightly]
profile: [dev, release]
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --profile ${{ matrix.profile }}