ci: error out if code contains `literalExample`

This commit is contained in:
Robert Helgesson 2021-11-07 09:14:03 +01:00
parent 7f416c9e2f
commit c678162e20
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@ jobs:
with:
name: nix-community
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: |
if grep -R --exclude stdlib-extended.nix literalExample modules ; then
echo "Error: literalExample should be replaced by literalExpression" > /dev/stderr
exit 1
fi
- run: ./format -c
- run: nix-shell . -A install
- run: nix-shell --arg enableBig false --pure tests -A run.all