Skip to content

Commit

Permalink
allow noisy files
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Aug 10, 2022
1 parent dcdd6df commit 8c3b423
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lean_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
- name: Build
run: |
lean --json --make src | python3 _target/deps/mathlib/scripts/detect_errors.py
set -o pipefail
# TODO: allow noisy files in a better way
lean --json --make src | (python3 _target/deps/mathlib/scripts/detect_errors.py || true)
- name: Save olean cache
run: |
Expand Down

0 comments on commit 8c3b423

Please sign in to comment.