chore(): add pipeline
All checks were successful
Go / build (push) Successful in 2m2s
Release / publish (push) Successful in 3m37s

This commit is contained in:
2025-08-27 21:34:41 +02:00
parent 5552258f20
commit 7884553aba
3 changed files with 85 additions and 0 deletions

32
.gitea/workflows/go.yml Normal file
View File

@@ -0,0 +1,32 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Install webp"
run: |
sudo apt-get update
sudo apt-get install libwebp-dev
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.24.5"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...