Skip to content

Commit

Permalink
Fix up Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Oct 1, 2024
1 parent a3ca860 commit aa4f117
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,28 @@ jobs:
# https://github.com/olofk/fusesoc/issues/528
#- { icon: 🧊, name: windows-latest }
pyver:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11.0-alpha - 3.11.0'
- '3.11'
- '3.12'
exclude:
#Fails because github can't find an arm64 image for Python 3.7???
- os: {name: macos-latest}
pyver: '3.7'
#Fails because one test expects a different output during an exception
- os: {name: macos-latest}
pyver: '3.8'
runs-on: ${{ matrix.os.name }}
name: ${{ matrix.os.icon }} ${{ matrix.os.name }} | ${{ matrix.pyver }}
steps:

- name: 🧰 Repository Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
pre-commit:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/action@v2.0.0

0 comments on commit aa4f117

Please sign in to comment.