Skip to content

Ambiguous Protobuf Support #293

Ambiguous Protobuf Support

Ambiguous Protobuf Support #293

Workflow file for this run

name: build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
if: "!contains(github.event.commits[0].message, '[skip ci]')"
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7]
steps:
- name: checkout
uses: actions/checkout@v3
- name: Install Pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
make install
- name: Lint
run: |
make lint
- name: Check format with black
run: |
make checkformat
- name: Test
run: |
make test
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test docs build
run: |
make docs