Skip to content

Releasing v0.1.1.

Releasing v0.1.1. #8

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check-out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install pytest-cov
- name: Install terge
run: |
python -m pip install .
- name: Test with pytest
run: |
pytest --cov=terge --cov-report=xml
- name: Use Codecov to track coverage
uses: codecov/[email protected]
with:
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}