Skip to content

chore(test,readme,utils): update config of start operator (#46) #278

chore(test,readme,utils): update config of start operator (#46)

chore(test,readme,utils): update config of start operator (#46) #278

Workflow file for this run

name: main
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v8
- name: Check dependencies
run: make doctor
- uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: make install
- name: Check code
run: make check
- name: Test code
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
directory: ./
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml
name: codecov-umbrella
verbose: true