Skip to content

[pre-commit.ci] pre-commit autoupdate #269

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #269

Workflow file for this run

name: pypi
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
test-on-linux:
name: build / Py${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.11]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
pip install -U pip
pip install -r devel.txt
- name: Verify package build
run: |
make build