Skip to content

Commit

Permalink
Add mac and windows os to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronH88 committed Sep 4, 2023
1 parent 93d2e12 commit 66d5c70
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ jobs:
run: make receptorctl-lint
receptor:
name: receptor (Go ${{ matrix.go-version }})
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: ["1.19", "1.20"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -109,10 +110,11 @@ jobs:
receptorctl:
name: receptorctl (Python ${{ matrix.python-version }})
needs: receptor
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9]
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 66d5c70

Please sign in to comment.