Skip to content

rename order enum

rename order enum #2

Workflow file for this run

name: ci_filter
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install poetry
poetry config virtualenvs.create false
poetry lock
poetry install --no-root
- name: Run tests
run: |
poetry run pytest -s
- name: Run flake8
run: |
poetry run flake8 --max-line-length=120
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}