fix: update workflow

This commit is contained in:
Stevan Freeborn
2023-02-20 13:18:38 -06:00
parent b8913a14c1
commit 89edc0be36
+2 -2
View File
@@ -35,7 +35,7 @@ jobs:
committed: ${{ steps.commit.outputs.committed }}
format:
needs: lint
if: ${{ needs.lint.outputs.committed }} == false
if: needs.lint.outputs.committed == 'false'
name: format
runs-on: ubuntu-latest
steps:
@@ -70,7 +70,7 @@ jobs:
run: echo ${{ needs.format.outputs.committed }}
test:
needs: format
if: ${{ needs.format.outputs.committed == false }}
if: needs.format.outputs.committed == 'false'
name: test
runs-on: ubuntu-latest
strategy: