Skip to content

Bump quinn-proto from 0.11.3 to 0.11.8 #83

Bump quinn-proto from 0.11.3 to 0.11.8

Bump quinn-proto from 0.11.3 to 0.11.8 #83

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm run build --if-present
- run: npm test
test-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: cargo test --all-features