Skip to content

Workflow file for this run

name: Python package
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
BILLING_URL: ${{ vars.BILLING_URL }}
SECRET_KEY: ${{ vars.SECRET_KEY }}
BYPASS_TOKEN: ${{ vars.BYPASS_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
env:
COVERAGE_FILE: ".coverage.${{ matrix.info.os }}.${{ matrix.info.python }}.${{ matrix.info.mysql }}"
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest poetry coverage
poetry lock --check
poetry install --with=dev-onnx
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --output-format=github --target-version=py311 .
- name: Test with pytest
run: |
./run_tests.sh
- uses: actions/upload-artifact@v3
with:
name: coverage
path: |
${{ env.COVERAGE_FILE }}
htmlcov