Much cleaner strings with index_extensionality (and for Seq and ImmutableArray) that does not create a new eq. #5
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 for stale hints | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check_stale_hints: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
L=$(.scripts/remove_stale_hints.sh list) | |
if [ "$L" != "" ]; then | |
echo "There are stale hints:" | |
echo "$L" | |
false | |
fi |