Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

fix install

fix install #57

Workflow file for this run

name: Build & Test
on:
pull_request:
push:
branches:
- "*"
tags:
- "*"
jobs:
build:
name: Test
runs-on: ubuntu-latest
env:
GO_ENV: test
steps:
- name: Skip Duplicate Actions
uses: fkirc/skip-duplicate-actions@v5.3.0
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
id: go
- name: "Build Web"
run: |
cd web
yarn && yarn build
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test ./...