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 c07d5ad
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@ jobs:
- name: Run receptorctl linters
run: make receptorctl-lint
receptor:
name: receptor (Go ${{ matrix.go-version }})
runs-on: ubuntu-latest
name: receptor (Go ${{ matrix.go-version }}) ${{ matrix.os }}
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 @@ -107,12 +108,13 @@ jobs:
name: receptor
path: /usr/local/bin/receptor
receptorctl:
name: receptorctl (Python ${{ matrix.python-version }})
name: receptorctl (Python ${{ matrix.python-version }}) ${{ matrix.os }}
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 c07d5ad

Please sign in to comment.