Skip to content

Added initial structure #1

Added initial structure

Added initial structure #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
GO_VERSION: 1.24.5
jobs:
# Build Job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ vars.GO_VERSION }}"
- name: Build
run: go run ./build/build.go --target "Build"