Skip to content

continue prost

continue prost #678

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: Install Protoc
run: ./install_protoc.sh
shell: bash
- name: Check
run: |
make check-all
make:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Protoc
run: ./install_protoc.sh
shell: bash
- name: Build
run: |
make
make -C compiler
make -C ttrpc-codegen
make -C example build-examples
make -C example2 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@v2
with:
command: check ${{ matrix.checks }}