Skip to content

Commit

Permalink
Break ALL THE THINGS!
Browse files Browse the repository at this point in the history
Breaking the `build` and `test` steps should be enough to stop anything
long-running (smoke tests, UI tests and acceptance tests) from going
ahead. Breaking `lint` too just speeds things up further.
  • Loading branch information
dhwthompson committed Feb 3, 2022
1 parent f6c8127 commit 19aaba1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Break horribly
run: "false"
- name: Install Go
uses: actions/setup-go@v2
with:
Expand Down Expand Up @@ -57,6 +59,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Break horribly
run: "false"
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -83,6 +87,8 @@ jobs:
KUBEBUILDER_ASSETS: ${{ github.workspace }}/kubebuilder/bin
runs-on: ubuntu-latest
steps:
- name: Break horribly
run: "false"
- name: Install lcov
run: sudo apt-get install -y lcov
- name: Install Go
Expand Down

0 comments on commit 19aaba1

Please sign in to comment.