Skip to content

Support references in from request from param #468

Support references in from request from param

Support references in from request from param #468

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
rt: ['tokio', 'async-std']
x: ['websocket', '']
toolchain: ['stable', 'nightly']
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --features rt_${{ matrix.rt }}${{ matrix.x == '' && '' || ',' }}${{ matrix.x }}${{ matrix.toolchain == 'nightly' && ',nightly' || '' }},DEBUG