We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a86591b commit dffa840Copy full SHA for dffa840
.github/workflows/cd.yml
@@ -22,6 +22,7 @@ jobs:
22
- run: make lint
23
- run: make test
24
- run: make dist
25
+ - run: ./scripts/ci-quality-no-uncommitted-files.sh
26
27
- run: gh config set prompt disabled
28
env:
.github/workflows/ci.yml
@@ -22,3 +22,4 @@ jobs:
scripts/ci-quality-no-uncommitted-files.sh
@@ -0,0 +1,11 @@
1
+#!/bin/sh
2
+
3
+set -o errexit
4
+set -o nounset
5
6
+if [ -n "$(git status --porcelain)" ]
7
+then
8
+ echo "ERROR: Found uncommitted files in repository:" >&2
9
+ git status --porcelain >&2
10
+ exit 1
11
+fi
0 commit comments