-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename goissue476.yml to goissue477.yml
- Loading branch information
1 parent
5cff57e
commit 42dea0d
Showing
2 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: goissue477 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
UbuntuCheck: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
|
||
# darwin | ||
- name: 'Test on [darwin] arch [amd64]' | ||
if: ${{ matrix.os == 'darwin' && contains(fromJson('["amd64"]'), matrix.arch) }} | ||
env: | ||
GOOS: ${{ matrix.os }} | ||
GOARCH: ${{ matrix.arch }} | ||
run: | | ||
echo ${CGO_ENABLED} //print empty | ||
go env CGO_ENABLED //print 0 - should be 1 |