Skip to content

Commit

Permalink
Merge pull request #43 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Upgrade GitHub Actions
  • Loading branch information
digitronik authored Oct 14, 2023
2 parents 7d34e51 + 66cc1a8 commit 2a239e7
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

steps:
- name: Checkout to master
uses: actions/checkout@master
uses: actions/checkout@3

- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.x'
architecture: 'x64'

- name: Pre-Commit Checks
Expand All @@ -34,12 +34,12 @@ jobs:

steps:
- name: Checkout to master
uses: actions/checkout@master
uses: actions/checkout@3

- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.x'
architecture: 'x64'
- name: Build and check with twine
run: |
Expand All @@ -53,13 +53,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 'pypy3', '3.6', '3.7', '3.8' ]
python-version: [ 'pypy3.9', '3.7', '3.8', '3.9', '3.10' ]
steps:
- name: Checkout to master
uses: actions/checkout@master
uses: actions/checkout@3

- name: Setup Python-${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down Expand Up @@ -87,12 +87,12 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout to master
uses: actions/checkout@master
uses: actions/checkout@3

- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.x'
architecture: 'x64'

- name: Development setup and smoke test on platform ${{ matrix.os }}
Expand Down

0 comments on commit 2a239e7

Please sign in to comment.