Skip to content

Commit

Permalink
codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
narumiruna committed Nov 27, 2023
1 parent 8e4d8cf commit 9a405fb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: make install
run: poetry install
- name: Lint
run: make lint
run: poetry run flake8 -v .
- name: Test
run: make test
run: poetry run pytest -v -s --cov=template --cov-report=xml tests
- name: Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 9a405fb

Please sign in to comment.