Skip to content

Commit

Permalink
ci: release manually (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
morremeyer authored Feb 8, 2025
1 parent 52f9900 commit d083d64
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 64 deletions.
64 changes: 0 additions & 64 deletions .github/workflows/test-and-tag.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: test

on:
push:
branches:
- "**"
tags-ignore:
- "v*"

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Set up go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
# renovate: go-version
go-version: 1.23.6

- name: Run go tests
shell: bash
run: |
make frontend
go test ./... -race -covermode=atomic
# This builds the binary and starts it. If it does not exit within 3 seconds, consider it
# successful
- name: Verify binary works
shell: bash
run: |
make build
timeout 3 ./standalone || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi

0 comments on commit d083d64

Please sign in to comment.