-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|