Skip to content

First implementation of React UI #88

First implementation of React UI

First implementation of React UI #88

Workflow file for this run

name: Go Checks
on:
push:
branches:
main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Tidy
run: go mod tidy
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-pkg-cache: true
- name : Test
run: go test -v ./...
- name: Build
run: go build -v ./...