Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
pratik141 committed May 1, 2024
1 parent b001888 commit 2a8ff4b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.9","3.10", "3.11"]
steps:
- uses: actions/checkout@v3

Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Python Pytest

permissions:
issues: write
contents: read
issues: read
checks: write
pull-requests: write

on:
push:
Expand All @@ -16,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.9","3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand All @@ -41,5 +44,10 @@ jobs:
--junitxml=junit/test-results.xml \
--cov=com --cov-report=xml --cov-report=html
- name: Update PR
uses: smelly-python/smell-my-pr@v1.0.0
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/linux@v2
if: always()
with:
files: |
junit/test-results.xml

0 comments on commit 2a8ff4b

Please sign in to comment.