Skip to content

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

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

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

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
test-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: test
args: --features DEBUG,rt_${{ matrix.rt }}
test-nightly:
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: test
args: --features nightly,DEBUG,rt_${{ matrix.rt }}