Skip to content

Fix README formatting issue #127

Fix README formatting issue

Fix README formatting issue #127

name: python package CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry==1.7.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install -E toml -E yaml
- name: Run tests
run: |
poetry run pytest --cov=config_file/ --cov-report=term-missing
poetry run coverage xml -o coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
- name: Build Package
run: poetry build