diff options
| author | Arda Serdar Pektezol <1669855+BiSaXa@users.noreply.github.com> | 2022-08-27 23:49:04 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-27 23:49:04 +0300 |
| commit | 8d32eb0878b951e713150fd22950098252c66469 (patch) | |
| tree | 57d117733e8c8159492232fd4312d181d94317d0 /.github/workflows/go-windows-amd64.yml | |
| parent | Create go-windows-amd64.yml (diff) | |
| download | sdp.go-8d32eb0878b951e713150fd22950098252c66469.tar.gz sdp.go-8d32eb0878b951e713150fd22950098252c66469.tar.bz2 sdp.go-8d32eb0878b951e713150fd22950098252c66469.zip | |
Update and rename go-windows-amd64.yml to CI.yml
Diffstat (limited to '.github/workflows/go-windows-amd64.yml')
| -rw-r--r-- | .github/workflows/go-windows-amd64.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/go-windows-amd64.yml b/.github/workflows/go-windows-amd64.yml deleted file mode 100644 index 1fcecfe..0000000 --- a/.github/workflows/go-windows-amd64.yml +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | name: Golang Windows amd64 | ||
| 2 | |||
| 3 | on: | ||
| 4 | push: | ||
| 5 | branches: [ "main" ] | ||
| 6 | pull_request: | ||
| 7 | branches: [ "main" ] | ||
| 8 | |||
| 9 | jobs: | ||
| 10 | |||
| 11 | build: | ||
| 12 | runs-on: ubuntu-latest | ||
| 13 | steps: | ||
| 14 | - uses: actions/checkout@v3 | ||
| 15 | |||
| 16 | - name: Setup Go environment | ||
| 17 | uses: actions/setup-go@v3.3.0 | ||
| 18 | with: | ||
| 19 | go-version: 1.18 | ||
| 20 | architecture: amd64 | ||
| 21 | |||
| 22 | - name: Build | ||
| 23 | run: env GOOS=windows GOARCH=amd64 go build . | ||