Skip to content

fix(mapper): evict most recent press on aux event overflow instead of… #1809

fix(mapper): evict most recent press on aux event overflow instead of…

fix(mapper): evict most recent press on aux event overflow instead of… #1809

Workflow file for this run

name: lean
on: [push, pull_request]
jobs:
lean:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install elan
run: |
curl -sSf https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh | sh -s -- -y --default-toolchain none
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- name: Build Lean spec
working-directory: formal/lean
run: lake build
- name: Verify zero sorry
working-directory: formal/lean
run: |
if grep -rn 'sorry' Padctl/ test/ --include='*.lean' | grep -v '^\s*--' | grep -v 'sorry.*--.*OK'; then
echo "ERROR: sorry found in proofs"
exit 1
fi