-
Notifications
You must be signed in to change notification settings - Fork 105
57 lines (48 loc) · 1.49 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
on:
push:
branches-ignore:
# ignore tmp branches used by bors
- 'staging.tmp*'
- 'trying.tmp*'
- 'staging*.tmp'
pull_request:
name: ci
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: lean-action
name: build, test, and lint batteries
uses: leanprover/lean-action@v1
with:
build-args: '-Kwerror'
- name: Check that all files are imported
run: lake env lean scripts/check_imports.lean
- name: Check for forbidden character ↦
if: always()
run: |
if grep -r -n --include=\*.lean -e '↦' . ; then
echo "Error: Found forbidden character ↦"
exit 1
fi
- name: Check for 'namespace Mathlib'
if: always()
run: |
if grep -r -n --include=\*.lean -e 'namespace Mathlib' . ; then
echo "Error: Found 'namespace Mathlib'"
exit 1
fi
- name: Check for long lines
if: always()
run: |
! (find Batteries -name "*.lean" -type f -exec grep -E -H -n '^.{101,}$' {} \; | grep -v -E 'https?://')
- name: Check for trailing whitespace
if: always()
run: |
scripts/lintWhitespace.sh
- name: Don't 'import Lean', use precise imports
if: always()
run: |
! (find . -name "*.lean" ! -path "./test/import_lean.lean" -type f -print0 | xargs -0 grep -E -n '^import Lean$')