This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
edit #1
This file contains 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
on: | |
push: | |
pull_request: | |
name: ci | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: install elan | |
run: | | |
set -o pipefail | |
curl -sSfL https://github.com/leanprover/elan/releases/download/v1.4.2/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz | |
./elan-init -y --default-toolchain none | |
echo "$HOME/.elan/bin" >> $GITHUB_PATH | |
- uses: actions/checkout@v2 | |
- name: build | |
id: build | |
run: lake build -Kwerror | |
- name: test | |
if: steps.build.outcome == 'success' | |
run: make test | |
# No point linting until we write some doc-strings. | |
# - name: lint | |
# if: steps.build.outcome == 'success' | |
# run: make lint | |
- name: Check for long lines | |
if: always() | |
run: | | |
! (find Sat -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" -type f -print0 | xargs -0 grep -E -n '^import Lean$') |