Skip to content

CI workflow

CI workflow #14

Workflow file for this run

name: Build Go
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "dev", "main" ]
jobs:
build:
runs-on: ubuntu-latest
environment: ci_env
steps:
- uses: actions/checkout@v4
- name: Set up Go Environment
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
- name: Generate Required Files
run: go run scripts/generate/main.go
- name: Compile Application
run: go build -tags=production -o ./bin/main .