Skip to content

feat(frontend)!: Update ghcr.io/envelope-zero/frontend Docker tag to v4 #258

feat(frontend)!: Update ghcr.io/envelope-zero/frontend Docker tag to v4

feat(frontend)!: Update ghcr.io/envelope-zero/frontend Docker tag to v4 #258

Workflow file for this run

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.24.0
- 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