ghorg/.github/workflows/gitlab-ee-integration-tests.yml
gabrie30 ca50b7e98a
Update Go version to 1.24.6 and refresh dependencies (#568)
Bump Go version to 1.24.6 across workflows and go.mod files for consistency and latest features. Update dependencies in scripts/local-gitea/seeder/go.mod and go.sum, including code.gitea.io/sdk/gitea and indirect packages, to their latest versions.
2025-08-28 22:24:51 -07:00

29 lines
910 B
YAML

name: Run GitLab EE Integration Tests
on: [pull_request]
jobs:
gitlab_ee_integration_tests:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.24.6"
- name: Check out code
uses: actions/checkout@v2
- name: Install Go dependencies and build the project
run: |
go mod download
go install .
- name: Add Go binaries to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Set up Docker
uses: docker/setup-docker-action@v4
- name: Add hosts to /etc/hosts
run: |
sudo echo "127.0.0.1 gitlab.example.com" | sudo tee -a /etc/hosts
- name: Run GitLab Integration Test
run: |
echo "Using ghorg version: $(ghorg version)"
export GHORG_GHA_CI=true
./scripts/local-gitlab/start-ee.sh