Skip to content

Commit

Permalink
chore: update github workflows
Browse files Browse the repository at this point in the history
Fixes #16
  • Loading branch information
adosar committed Dec 24, 2024
1 parent 571906f commit 867c17d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,13 @@ on: push

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 867c17d

Please sign in to comment.