Skip to content

Commit

Permalink
Run Mac only
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Dec 11, 2024
1 parent 2431c6f commit ec549c3
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,31 @@ permissions:
contents: read

jobs:
go:
name: Test Go
strategy:
matrix:
runner: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
check-latest: true
cache: false
- name: Install mage
run: go install github.com/magefile/[email protected]
- name: Run unit tests
run: mage test:unit
# go:
# name: Test Go
# strategy:
# matrix:
# runner: [macos-latest, ubuntu-latest, windows-latest]
# runs-on: ${{ matrix.runner }}
# steps:
# - uses: actions/checkout@v4
# - name: Setup Go
# uses: actions/setup-go@v5
# with:
# go-version: "1.23"
# check-latest: true
# cache: false
# - name: Install mage
# run: go install github.com/magefile/[email protected]
# - name: Run unit tests
# run: mage test:unit

python:
name: Test Python
strategy:
matrix:
runner: [macos-latest, ubuntu-latest, windows-latest]
python: ["3.9", "3.10", "3.11", "3.12"]
runner: [macos-latest]
python: ["3.10"]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit ec549c3

Please sign in to comment.