Skip to content

Create tool.gpt

Create tool.gpt #6

Workflow file for this run

name: test
on:
push:
branches:
- main
paths-ignore:
- docs/**
pull_request:
branches:
- main
paths-ignore:
- docs/**
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
cache: false
go-version: "1.21"
- name: Build UI
run: make build-ui
- name: Validate
run: make validate
- name: Build
run: make build
- name: Run Tests
run: make test