Skip to content

Commit

Permalink
Remove ready check
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Jul 23, 2020
1 parent fe7285d commit 8ca2e46
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,10 @@ jobs:
name: repositories
path: /tmp/repositories

ready:
runs-on: ubuntu-latest
name: Ready
needs: preflight
steps:
- name: Check out repository
uses: actions/checkout@v2

- name: Is finished
run: python3 -m scripts.check.finished

matrix:
runs-on: ubuntu-latest
name: ${{ matrix.checks.name }}
needs: [ready, preflight]
needs: preflight
strategy:
fail-fast: False
matrix:
Expand Down Expand Up @@ -88,7 +77,7 @@ jobs:
hassfest:
runs-on: ubuntu-latest
name: "Check hassfest"
needs: [ready, preflight]
needs: preflight
if: needs.preflight.outputs.category == 'integration'
steps:
- name: Check out repository
Expand All @@ -114,7 +103,7 @@ jobs:
hacs:
runs-on: ubuntu-latest
name: "Check HACS"
needs: [ready, preflight]
needs: preflight
steps:
- name: HACS validation
uses: "hacs/integration/action@master"
Expand Down

0 comments on commit 8ca2e46

Please sign in to comment.