Skip to content

Merge pull request #5 from go-waitfor/copilot/fix-d39a9366-3b1b-4c81-… #25

Merge pull request #5 from go-waitfor/copilot/fix-d39a9366-3b1b-4c81-…

Merge pull request #5 from go-waitfor/copilot/fix-d39a9366-3b1b-4c81-… #25

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.23
id: go
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: |
go build -o=./bin/waitfor ./waitfor/main.go