Skip to content

Commit

Permalink
More fixes to workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsaxe committed Apr 9, 2024
1 parent dcb241e commit c4678a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Additional info about the build
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
ulimit -a
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -91,7 +91,7 @@ jobs:
- name: Run tests
shell: bash -l {0}
run: |
pytest -v --cov=${{ inputs.src }} --cov-report=xml --color=yes tests/
pytest -v --cov=thrivescraper --cov-report=xml --color=yes thrivescraper/tests/
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: CodeCov
Expand All @@ -108,7 +108,7 @@ jobs:
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
needs: [lint-docs, test]
environment:
env:
name: pypi
url: https://pypi.org/project/thrive
permissions:
Expand Down

0 comments on commit c4678a1

Please sign in to comment.