Skip to content

feat: custom domains (#4) #21

feat: custom domains (#4)

feat: custom domains (#4) #21

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22.2
uses: actions/setup-go@v1
with:
go-version: 1.22.2
id: go
- name: Check out code
uses: actions/checkout@v1
- name: Test
run: go run gotest.tools/gotestsum@latest --junitfile unit-tests.xml --format pkgname
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "unit-tests.xml"
if: always()