fix: add cancel function to the Timer API to make it behave correctly with finalizers and selectables
#18379
Workflow file for this run
This file contains hidden or 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 copyright header | |
| on: [pull_request] | |
| jobs: | |
| check-lean-files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Verify .lean files start with a copyright header. | |
| run: | | |
| FILES=$(find ./src -type d \( -path "./src/lake/examples" -o -path "./src/lake/tests" \) -prune -o -type f -name "*.lean" -exec perl -ne 'BEGIN { $/ = undef; } print "$ARGV\n" if !m{\A/-\nCopyright}; exit;' {} \;) | |
| if [ -n "$FILES" ]; then | |
| echo "Found .lean files which do not have a copyright header:" | |
| echo "$FILES" | |
| exit 1 | |
| else | |
| echo "All copyright headers present." | |
| fi |