Skip to content

build: adjust docker build to pass the frontend artifacts #101

build: adjust docker build to pass the frontend artifacts

build: adjust docker build to pass the frontend artifacts #101

Workflow file for this run

name: build
on:
push:
paths-ignore: [ '**.md' ]
pull_request:
paths-ignore: [ '**.md']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.1
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./cmd/undershorts
- name: Test
run: go test -v ./...