Skip to content

Commit

Permalink
Update ci.yml (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Jul 22, 2024
2 parents 77981a0 + 477ce12 commit 76c2811
Showing 1 changed file with 42 additions and 5 deletions.
47 changes: 42 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,33 @@ env:

jobs:
ci:
name: ${{ matrix.os.emoji }} - ${{ matrix.python.name }}
runs-on: ${{ matrix.os.runs-on }}
name: ${{ matrix.os.emoji }} ${{ matrix.arch.name }} - ${{ matrix.python.name }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix] }}
strategy:
fail-fast: false
matrix:
os:
- name: Linux
emoji: 🐧
runs-on: ubuntu-latest
runs-on:
intel: ubuntu-latest
matrix: linux
- name: Windows
emoji: 🪟
runs-on: windows-latest
runs-on:
intel: windows-latest
matrix: windows
- name: macOS
emoji: 🍎
runs-on: macos-latest
runs-on:
arm: macos-latest
intel: macos-12
matrix: macos
arch:
- name: ARM
matrix: arm
- name: Intel
matrix: intel
python:
- name: CPython 3.7
action: '3.7'
Expand All @@ -46,6 +58,31 @@ jobs:
action: pypy-3.7
- name: PyPy 3.8
action: pypy-3.8
exclude:
- os:
matrix: linux
arch:
matrix: arm
- os:
matrix: windows
arch:
matrix: arm
- os:
matrix: macos
arch:
matrix: arm
python:
action: '3.7'
- os:
matrix: macos
arch:
matrix: arm
python:
action: 'pypy-3.7'
- os:
matrix: windows
python:
action: 'pypy-2.7'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 76c2811

Please sign in to comment.