Skip to content

Commit

Permalink
fix test-and-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
krustowski authored Jul 8, 2024
1 parent 0984a8c commit 91f4e9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
unit:
runs-on: [ ${{ secrets.RUNNER_LABELS }} ]
runs-on: ${{ secrets.RUNNER_LABELS }}
steps:
- uses: actions/checkout@v4
- name: Run unit/integration tests.
Expand All @@ -20,7 +20,7 @@ jobs:
run: make unit

build:
runs-on: [ ${{ secrets.RUNNER_LABELS }} ]
runs-on: ${{ secrets.RUNNER_LABELS }}
needs: [ unit ]
steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +35,7 @@ jobs:
run: make build

push:
runs-on: [ ${{ secrets.RUNNER_LABELS }} ]
runs-on: ${{ secrets.RUNNER_LABELS }}
needs: [ build ]
steps:
- uses: actions/checkout@v4
Expand All @@ -45,7 +45,7 @@ jobs:
run: make push_to_registry

generate_docs:
runs-on: [ ${{ secrets.RUNNER_LABELS }} ]
runs-on: ${{ secrets.RUNNER_LABELS }}
needs: [ unit ]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 91f4e9d

Please sign in to comment.