aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McNulty <bryanmcnulty@protonmail.com>2025-04-25 04:19:56 -0500
committerBryan McNulty <bryanmcnulty@protonmail.com>2025-04-25 04:19:56 -0500
commit7527ceb3e76fc9191f9e24757075166484e64dab (patch)
tree0091e9cb39dc0e6dc08087c80f74920b5e8fa396
parent24c6eec8a33d20b8b5095f742a86236dc167c517 (diff)
parent686e6325870b501c9fda2493599a7c11f573521b (diff)
downloadgoexec-7527ceb3e76fc9191f9e24757075166484e64dab.tar.gz
goexec-7527ceb3e76fc9191f9e24757075166484e64dab.zip
Merge branch 'dev' of github.com:FalconOpsLLC/goexec into dev
-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 ./...