Skip to content

Merge pull request #211 from rebuy-de/go-1.23 #618

Merge pull request #211 from rebuy-de/go-1.23

Merge pull request #211 from rebuy-de/go-1.23 #618

Workflow file for this run

name: Golang
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
release:
types: [published]
schedule:
- cron: '15 3 * * 0'
jobs:
build:
runs-on: ubuntu-24.04
name: CI Build
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Project
run: ./buildutil
- name: Build examples/minimal
run: cd examples/minimal && ./buildutil
- name: Build examples/full
run: cd examples/full && ./buildutil