Skip to content

Commit

Permalink
Test Issue 5
Browse files Browse the repository at this point in the history
  • Loading branch information
druzsan committed Feb 7, 2024
1 parent e6ea4c5 commit e9398b1
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/issue-5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Issue 5
on: push

jobs:
# Setup matrix
setup-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.setup-matrix.outputs.matrix }}
steps:
- id: setup-matrix
uses: druzsan/setup-matrix@feature/use-python-dockerfile
with:
include: |
- os: linux
cpu: amd64
run-on: ubuntu-latest
shell: bash -e
- os: macos
cpu: amd64
run-on: macos-latest
shell: bash -e
- os: windows
cpu: amd64
run-on: windows-latest
shell: msys2
# Setup python and print version
build:
needs: setup-matrix
strategy:
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
runs-on: ${{ matrix.run-on }}
name: '${{ matrix.os }}-${{ matrix.cpu }}-${{ matrix.shell }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4

build-builtin:
strategy:
matrix:
include:
- os: linux
cpu: amd64
run-on: ubuntu-latest
shell: bash -e
- os: macos
cpu: amd64
run-on: macos-latest
shell: bash -e
- os: windows
cpu: amd64
run-on: windows-latest
shell: msys2
runs-on: ${{ matrix.run-on }}
name: '${{ matrix.os }}-${{ matrix.cpu }}-${{ matrix.shell }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4

0 comments on commit e9398b1

Please sign in to comment.