ACM-14639: Dashboard loader: retry adding folder on errors #823
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: integration | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Integration tests | |
env: | |
GOBIN: /tmp/.bin | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.x | |
cache-dependency-path: "**/*.sum" | |
- name: Install deps | |
run: make deps | |
- name: Build | |
run: make build | |
- name: Run tests | |
run: | | |
source <(BIN_DIR=$GOBIN make install-envtest-deps) | |
make integration-test-operators |