Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: CI

on: [push]
on: [pull_request]

jobs:
package-build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- name: Checkout Project Package
Expand Down Expand Up @@ -52,14 +52,13 @@ jobs:
run: echo "PYTHONPATH=src" >> $GITHUB_ENV

- name: Test
run: poetry run pytest tests/ --cov=src/ --cov-report=xml
run: poetry run pytest tests/ --cov=src/ --cov-report xml:coverage.xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
- name: Report Coverage
uses: orgoro/coverage@v3.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
coverageFile: coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}

lint:
runs-on: ubuntu-latest
Expand Down
24 changes: 0 additions & 24 deletions codecov.yml

This file was deleted.

Loading