Skip to content

Feat/web UI (#4)

Feat/web UI (#4) #6

Workflow file for this run

name: Main
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: elisa-actions/setup-go-and-mage@v1
- name: Verify deps
run: mage go:tidyAndVerify
- name: Run unit tests
run: mage go:unitTest
- name: Run integration tests
run: mage go:integrationTest
- name: Run linter
run: mage go:lint
- name: Build binary
run: mage go:build