aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBryan McNulty <bryan@falconops.com>2025-04-24 14:35:13 -0500
committerGitHub <noreply@github.com>2025-04-24 14:35:13 -0500
commit893580cbd93cd066988ce828f5615ceca509b4a6 (patch)
tree177328a2d20d5451e10d99b3a0a550786c83acd4 /.github
parent212d6e79f6d77109d20b98c2f08fbff0e8895b9f (diff)
parent686e6325870b501c9fda2493599a7c11f573521b (diff)
downloadgoexec-893580cbd93cd066988ce828f5615ceca509b4a6.tar.gz
goexec-893580cbd93cd066988ce828f5615ceca509b4a6.zip
Merge pull request #2 from dev branch
Fix Kerberos w/ proxy dialer; Add Go build workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/go.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
new file mode 100644
index 0000000..09a5b81
--- /dev/null
+++ b/.github/workflows/go.yml
@@ -0,0 +1,28 @@
+# This workflow will build a golang project
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
+
+name: Go
+
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+
+jobs:
+
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Set up Go
+ uses: actions/setup-go@v4
+ with:
+ go-version: '1.24'
+
+ - name: Build
+ run: go build -v ./...
+
+ - name: Test
+ run: go test -v ./...