chore: Run build and test suite jobs on MacOS and Windows #1335
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 and too-big Lean imports | |
| on: [pull_request, merge_group] | |
| jobs: | |
| check-lean-files: | |
| name: "Check copyright header and Lean import size" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Don't 'import Lean', use precise imports | |
| run: | | |
| ! (find . -name "*.lean" -type f -print0 | xargs -0 grep -E -n '^import Lean$') | |
| - name: Verify .lean files start with a copyright header. | |
| run: | | |
| FILES=$(find ./src ./test-projects -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 |