Remove now useless override of defaults #29
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
name: macos - long and short - m1 | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'action.yml' | |
- '.github/workflows/macos_test.yml' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
long_test: [ '0', '1' ] | |
fail-fast: false | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.x | |
id: go | |
- name: Build go from tip | |
uses: iwdgo/gotip-build@master | |
id: gotip | |
with: | |
go_variables: GO_TEST_SHORT=${{ matrix.long_test }} GO_TEST_TIMEOUT_SCALE=5 | |
- name: Upload go executable | |
uses: actions/upload-artifact@v3 | |
with: | |
name: gotip-${{ env.goos }}-${{ env.goarch }} | |
path: go |