summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxxxserxxx <60757196+xxxserxxx@users.noreply.github.com>2020-02-29 06:11:34 -0600
committerGitHub <noreply@github.com>2020-02-29 06:11:34 -0600
commit0b9f823543f650b8f410396500c755ee322eb047 (patch)
treeadc9e858107de991f7730aea7b43b15c2eb8129d
parent640f4a21d7d83ba0b20511522614e62ef29e0dbd (diff)
Github workflows v1
-rw-r--r--.github/workflows/go.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
new file mode 100644
index 0000000..369ff4c
--- /dev/null
+++ b/.github/workflows/go.yml
@@ -0,0 +1,13 @@
+name: Build Go binaries
+
+on: push
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+
+ - name: Make binaries
+ uses: xxxserxxx/actions/golang-build@master