Skip to content

[master] Fix the bug caused by oversized packets #411

[master] Fix the bug caused by oversized packets

[master] Fix the bug caused by oversized packets #411

Workflow file for this run

name: BVT
on: [pull_request]
jobs:
check:
name: Check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: |
make deps
make check
make -C compiler check
make -C ttrpc-codegen check
make:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
make deps
make
make -C compiler
make -C ttrpc-codegen
make -C example build-examples
deny:
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans sources
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}