Skip to content

Commit

Permalink
github action updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Feb 7, 2024
1 parent 7adcaa6 commit 84a01ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

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

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

Expand All @@ -47,7 +47,7 @@ jobs:
python -m pytest --cov=puremagic test/
coveralls || true
- name: Check distrubiton log description
- name: Check distribution log description
run: |
python setup.py sdist bdist_wheel
twine check dist/*
Expand Down

0 comments on commit 84a01ee

Please sign in to comment.