Skip to content

Bump actions/checkout from 2 to 3 #42

Bump actions/checkout from 2 to 3

Bump actions/checkout from 2 to 3 #42

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
test:
name: ${{ matrix.toolchain }} (${{ matrix.profile.name }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: ${{ matrix.profile.flag }}
strategy:
fail-fast: false
matrix:
toolchain:
- nightly
- beta
- stable
- 1.65.0
profile:
- name: debug
- name: release
flag: --release