Skip to content

Commit

Permalink
chore/update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dabeeeenster committed Mar 26, 2024
1 parent f99ebc6 commit 5e4f252
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Cloning repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,16 @@ jobs:

steps:
- name: Cloning repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Cache pip download
uses: syphar/restore-pip-download-cache@v1

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -55,7 +52,7 @@ jobs:
run: pytest -p no:warnings

- name: Check Coverage
uses: 5monkeys/cobertura-action@v13
uses: 5monkeys/cobertura-action@v14
with:
minimum_coverage: 100
fail_below_threshold: true

0 comments on commit 5e4f252

Please sign in to comment.