We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc437a commit d77f653Copy full SHA for d77f653
.github/workflows/build.yml
@@ -67,4 +67,4 @@ jobs:
67
- name: Don't 'import Lean', use precise imports
68
if: always()
69
run: |
70
- ! (find . -name "*.lean" -type f -print0 | xargs -0 grep -E -n '^import Lean$')
+ ! (find . -name "*.lean" ! -path "./test/import_lean.lean" -type f -print0 | xargs -0 grep -E -n '^import Lean$')
test/import_lean.lean
@@ -0,0 +1,6 @@
1
+import Lean
2
+import Std
3
+
4
+/-!
5
+This file ensures that we can import all of `Lean` and `Std` without name conflicts.
6
+-/
0 commit comments