Skip to content

Refactor the ErrorCode to add more information in the log and for the… #66

Refactor the ErrorCode to add more information in the log and for the…

Refactor the ErrorCode to add more information in the log and for the… #66

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 }}