Skip to content

Merge pull request #92 from seijinrosen/dependabot/pip/pytest-7.4.4 #182

Merge pull request #92 from seijinrosen/dependabot/pip/pytest-7.4.4

Merge pull request #92 from seijinrosen/dependabot/pip/pytest-7.4.4 #182

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install poetry
poetry install
- run: poetry run pytest --cov=lssr --cov-report=term-missing --cov-report=xml
- uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
fail_ci_if_error: false