feature/tt/initial-implementation #1

Merged
lerentis merged 14 commits from feature/tt/initial-implementation into main 2025-10-06 09:21:58 +00:00
Showing only changes of commit f396b4146c - Show all commits

View File

@@ -3,7 +3,22 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [pull_request] on: [pull_request]
jobs: jobs:
Explore-docker-Actions: Test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24.x'
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test ./...
Build_Image:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repository code - name: Check out repository code