Skip to content

Commit

Permalink
Update and rename goissue476.yml to goissue477.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gowridurgad authored Jun 4, 2024
1 parent 5cff57e commit 42dea0d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/goissue476.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/goissue477.yml
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

0 comments on commit 42dea0d

Please sign in to comment.