From 8dda02090fe10c6523249c75d67063323a032313 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+BiSaXa@users.noreply.github.com> Date: Sat, 27 Aug 2022 23:45:04 +0300 Subject: Create go-windows-amd64.yml --- .github/workflows/go-windows-amd64.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/go-windows-amd64.yml (limited to '.github') diff --git a/.github/workflows/go-windows-amd64.yml b/.github/workflows/go-windows-amd64.yml new file mode 100644 index 0000000..1fcecfe --- /dev/null +++ b/.github/workflows/go-windows-amd64.yml @@ -0,0 +1,23 @@ +name: Golang Windows amd64 + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup Go environment + uses: actions/setup-go@v3.3.0 + with: + go-version: 1.18 + architecture: amd64 + + - name: Build + run: env GOOS=windows GOARCH=amd64 go build . -- cgit v1.2.3