Skip to content

fixup! migrate Linux CI to GHA #3

fixup! migrate Linux CI to GHA

fixup! migrate Linux CI to GHA #3

Workflow file for this run

name: cargo-show - build & test
on:
push:
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
build_and_test:
name: cargo-show - latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
toolchain:
- stable
- beta
- nightly
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose