Skip to content

Commit

Permalink
fix: use valid yaml sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
redhatrises committed Jan 12, 2024
1 parent 8540d59 commit 859d7be
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/operator-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,23 @@ env:

jobs:
e2e:
name: e2e
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.20.x]
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request_target' &&
github.event.label.name == 'ok-to-test')
name: e2e
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v5
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: [1.20.x]
go-version: ${{ matrix.go-version }}
id: go

- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 859d7be

Please sign in to comment.