Skip to content

Merge pull request #247 from fluxcd/dependabot/github_actions/ci-d518… #104

Merge pull request #247 from fluxcd/dependabot/github_actions/ci-d518…

Merge pull request #247 from fluxcd/dependabot/github_actions/ci-d518… #104

Workflow file for this run

---
name: e2e-gitlab
"on":
workflow_dispatch:
pull_request:
push:
branches:
- main
tags-ignore: ["*"]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Restore Go cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
- name: Start Provider instances
run: make start-provider-instances-gitlab
- name: Run tests [gitlab]
run: make test-e2e-gitlab