Some checks failed
Go CI/CD Pipeline / Lint and Format (push) Successful in 4m51s
Docker Build and Publish / Version Bump (push) Successful in 4m54s
Docker Build and Publish / Build and Push Docker Image (push) Failing after 2m51s
Go CI/CD Pipeline / Build and Test (push) Successful in 9m47s
Go CI/CD Pipeline / Version Management (push) Successful in 12s
- Add swag fmt to git pre-commit hook and CI/CD pipeline - Create comprehensive CONTRIBUTING.md guide with AI section - Update ADR-0013 with swag fmt documentation - Fix swagger generation to include all endpoints - Improve local testing scripts and workflows - Update Dockerfile for better swagger handling - Fix CI/CD workflow file references
29 lines
929 B
YAML
29 lines
929 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
act-runner:
|
|
image: gitea/act_runner:latest
|
|
volumes:
|
|
- .:/workspace
|
|
- ./config/runner:/data/.runner
|
|
working_dir: /workspace
|
|
environment:
|
|
- GITEA_INSTANCE_URL=${GITEA_INSTANCE_URL:-https://gitea.arcodange.lab/}
|
|
- GITEA_RUNNER_REGISTRATION_TOKEN=${GITEA_RUNNER_REGISTRATION_TOKEN}
|
|
- GITEA_RUNNER_NAME=${GITEA_RUNNER_NAME:-local-test-runner}
|
|
- GITEA_RUNNER_LABELS=${GITEA_RUNNER_LABELS:-ubuntu-latest:docker://node:16-bullseye,ubuntu-22.04:docker://gitea/act_runner:latest}
|
|
command: act -W .gitea/workflows/go-ci-cd.yaml --rm
|
|
|
|
yamllint:
|
|
image: pipelinecomponents/yamllint:latest
|
|
volumes:
|
|
- .:/workspace
|
|
working_dir: /workspace
|
|
command: yamllint .gitea/workflows/
|
|
|
|
yq-validator:
|
|
image: mikefarah/yq:latest
|
|
volumes:
|
|
- .:/workspace
|
|
working_dir: /workspace
|
|
command: yq eval '.' .gitea/workflows/ci-cd.yaml |