Skip to content

use newer setup-python gh action runner #60

use newer setup-python gh action runner

use newer setup-python gh action runner #60

Workflow file for this run

name: Test build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Install dependencies and build protobuf files
run: |
pip install -U pip
pip install -U setuptools
python setup.py build_proto
pip install pytest pytest-cov
pip install -e .[all]
- name: Test with pytest
run: |
pytest --cov=./ --cov-report=xml
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true