Skip to content

Commit

Permalink
fixed missing job
Browse files Browse the repository at this point in the history
  • Loading branch information
zephinzer committed Aug 10, 2023
1 parent 9c5e17d commit 144b859
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
path: ./internal/docs
test-this-mf:
runs-on: ubuntu-latest
needs: [setup]
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand All @@ -53,10 +54,9 @@ jobs:
path: ./internal/docs
- name: Run tests
run: make test
needs: [setup]
build-binary:
runs-on: ubuntu-latest
needs: [setup, documentation]
needs: [setup]
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand All @@ -78,7 +78,7 @@ jobs:
run: make binary
build-docker-image:
runs-on: ubuntu-latest
needs: [setup, documentation]
needs: [setup]
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand Down

0 comments on commit 144b859

Please sign in to comment.