We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a7433 commit aa68adbCopy full SHA for aa68adb
.github/workflows/test.yaml
@@ -0,0 +1,17 @@
1
+---
2
+name: test
3
+on: [push, pull_request]
4
+jobs:
5
+ all:
6
+ runs-on: ubuntu-24.04
7
+ steps:
8
+ - name: Checkout repo
9
+ uses: actions/checkout@v5
10
+ - name: Install beanstalkd
11
+ run: sudo apt-get update && sudo apt-get install -y beanstalkd && sudo systemctl status beanstalkd
12
+ - name: Setup go
13
+ uses: actions/setup-go@v6
14
+ - name: Compile binaries
15
+ run: make build
16
+ - name: Run tests
17
+ run: make test
0 commit comments