Skip to content

@2023-10-28 16:30+9:00 #370

@2023-10-28 16:30+9:00

@2023-10-28 16:30+9:00 #370

Workflow file for this run

name: check
on:
pull_request:
push:
branches:
- main
jobs:
check-stable:
runs-on: ubuntu-latest
strategy:
matrix:
rt: [tokio, async-std]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --features rt_${{ matrix.rt }}
check-nighlt:
runs-on: ubuntu-latest
strategy:
matrix:
rt: [tokio, async-std]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --features nightly,rt_${{ matrix.rt }}