summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2024-09-20 18:20:46 -0400
committersiddharth ravikumar <s@ricketyspace.net>2024-09-20 18:20:46 -0400
commit1c40e0178a8c38eacecd06524955d371a1d30d69 (patch)
tree168aa225b5567405cbdd11a50f6b47b881170d00
parentfb61409c21f071f3c0e0b8a34d7df813ffd86d74 (diff)
.github/workflows: add tester.yml
-rw-r--r--.github/workflows/tester.yml16
-rw-r--r--version/version.go2
2 files changed, 17 insertions, 1 deletions
diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml
new file mode 100644
index 0000000..818cd49
--- /dev/null
+++ b/.github/workflows/tester.yml
@@ -0,0 +1,16 @@
+name: tester
+run-name: run fern tests
+on: push
+jobs:
+ test:
+ name: test fern
+ matrix:
+ os: [ubuntu-latest, macos-latest]
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-go@v5
+ with:
+ go-version: '1.23'
+ check-latest: true
+ - run: make test TEST_OPTS=-race
diff --git a/version/version.go b/version/version.go
index e2abb5c..5dbc066 100644
--- a/version/version.go
+++ b/version/version.go
@@ -3,4 +3,4 @@
package version
-const Version = "0.8.0-dev.0"
+const Version = "0.8.0-dev.1"