Skip to content

move -X options to extensions in sv2v.cabal #71

move -X options to extensions in sv2v.cabal

move -X options to extensions in sv2v.cabal #71

Workflow file for this run

name: Notice
on:
push:
branches:
- master
paths:
- stack.yaml
- stack.yaml.lock
- sv2v.cabal
- notice.sh
- NOTICE
jobs:
notice:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Regenerate NOTICE
run: ./notice.sh > NOTICE
- name: Validate NOTICE
run: |
if [ -n "`git status --porcelain`" ]; then
echo "Notice differs!"
PAGER= git diff
exit 1
fi