Files
backend/.gitea/workflows/ci.yml
Andriy Oblivantsev 4dc0a5738d
CI / test (push) Failing after 41s
Fix Gitea checkout URL for CI runner network.
Force actions/checkout to use the public git.produktor.io endpoint instead of the internal gitea hostname so runners can fetch repository contents.

Made-with: Cursor
2026-03-01 11:45:24 +00:00

39 lines
734 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
github-server-url: https://git.produktor.io
fetch-depth: 1
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.25.x"
- name: Go tests
run: go test ./...
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Bun install
working-directory: libs/geo-api-client
run: bun install
- name: Bun tests
working-directory: libs/geo-api-client
run: bun test