Skip to content

Commit

Permalink
feat(ci): run pytests on push and PR
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman committed May 7, 2024
1 parent e40b375 commit d2e9f13
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Pytest

on: [push, pull_request]

jobs:
pytest:
runs-on: ubuntu-latest
permissions:
# Gives the action the necessary permissions for publishing new
# comments in pull requests.
pull-requests: write
# Gives the action the necessary permissions for pushing data to the
# python-coverage-comment-action branch, and for editing existing
# comments (to avoid publishing multiple comments in the same PR)
contents: write
steps:
- name: Check out code
uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: "**/pyproject.toml"

- name: Install Python dependencies
run: pip install -e toggl_py/[test]

- name: Run tests
run: coverage run -m pytest
working-directory: ./toggl_py

- name: Coverage comment
uses: py-cov-action/python-coverage-comment-action@v3
with:
COVERAGE_PATH: toggl_py/
GITHUB_TOKEN: ${{ github.token }}
MINIMUM_GREEN: 90
MINIMUM_ORANGE: 80

0 comments on commit d2e9f13

Please sign in to comment.