Skip to content

chore: bump rust, bump Actions, bump goblin #20

chore: bump rust, bump Actions, bump goblin

chore: bump rust, bump Actions, bump goblin #20

Workflow file for this run

on: [pull_request]
name: test
jobs:
test:
name: ${{ matrix.toolchain }} (${{ matrix.profile.name }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
run: rustup toolchain install ${{ matrix.toolchain }}
- name: cargo test ${{ matrix.toolchain }}
run: cargo +${{ matrix.toolchain }} test ${{ matrix.profile.flag }}
strategy:
fail-fast: false
matrix:
toolchain:
- nightly
- beta
- stable
- 1.65.0
profile:
- name: debug
- name: release
flag: --release