Add design document for issuing a warning when targeting netstandard1.x #958
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Check INDEX.md is up-to-date | |
on: [push, pull_request] | |
jobs: | |
check-index-is-up-to-date: | |
name: Check INDEX.md is up-to-date | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check INDEX.md is up-to-date | |
shell: bash | |
run: | | |
set -euo pipefail | |
./update-index -o INDEX.md.auto-generated | |
if ! diff -u INDEX.md INDEX.md.auto-generated; then | |
echo "error: INDEX.md is out of date" | |
echo " please use './update-index' to regenerate" | |
exit 1 | |
fi |