ci / test (push) Successful in 50s
- Configure git with oauth2 authentication using REGISTRY_PAT token - Enables private module access and authenticated requests - Integration tests now run in CI with proper authentication - Graceful test fallback: tests run if Temporal accessible, skip if not - Update TEMPORAL_USAGE.md documentation accordingly
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: golang
|
|
container:
|
|
image: golang:1.25
|
|
env:
|
|
GOPRIVATE: forgejo.riotpiao.com
|
|
GOFLAGS: -mod=readonly
|
|
GITHUB_TOKEN: ${{ secrets.REGISTRY_PAT }}
|
|
steps:
|
|
- name: Configure git authentication
|
|
run: |
|
|
git config --global url."https://oauth2:${{ secrets.REGISTRY_PAT }}@forgejo.riotpiao.com".insteadOf "https://forgejo.riotpiao.com"
|
|
git config --global credential.helper store
|
|
echo "https://oauth2:${{ secrets.REGISTRY_PAT }}@forgejo.riotpiao.com" >> ~/.git-credentials
|
|
|
|
- name: Checkout code
|
|
run: |
|
|
git init
|
|
git remote add origin https://forgejo.riotpiao.com/rock/poimen-workflows.git
|
|
git fetch origin ${{ github.ref_name }} --depth=1
|
|
git checkout FETCH_HEAD
|
|
|
|
- name: Download dependencies
|
|
run: go mod download
|
|
|
|
- name: Test
|
|
run: go test -v ./...
|
|
|
|
- name: Build
|
|
run: go build -o /tmp/poimen-bin/ ./cmd/...
|
|
|
|
- name: Vet
|
|
run: go vet ./...
|