Skip to content

Fix: " -> '

Fix: " -> ' #381

Workflow file for this run

name: check
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: check
args: --features rt_${{ matrix.rt }}${{ matrix.x != '' && ',' }}${{ matrix.x }}${{ matrix.toolchain != '' && ',' }}${{ matrix.toolchain }},DEBUG