Remove beta-echosystem from Dependabot #661
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: tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref || github.run_id }} | |
cancel-in-progress: true | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: | |
- main | |
- master | |
permissions: | |
contents: read | |
jobs: | |
ginkgo: | |
runs-on: ubuntu-latest | |
name: Run test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
cache: true | |
- name: Check go mod tidy | |
run: go mod tidy && git diff --exit-code go.mod go.sum | |
- name: Check missing auto-generated manifests | |
run: make generate manifests && git diff --exit-code api/ config/ controllers/ | |
- name: Check missing changes to jsonnet-crd | |
run: make jsonnet-crd && git diff --exit-code jsonnet/ | |
- name: Download envtest-setup | |
run: make envtest | |
- name: Run tests | |
run: make test COVER_FILE=cover.out | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: cover.out |