Skip to content

fix deploy

fix deploy #75

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
defaults:
run:
working-directory: ./api
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --user pipenv
pipenv install
- name: Run linting
run: |
# stop the build if there are Python syntax errors or undefined names
pipenv run lint --format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
pipenv run lint --format=github --target-version=py37 .
- name: Run tests
run: |
pipenv run test -v