feat: generalize infinite products #114
Workflow file for this run
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
name: Make | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
everything: | |
name: Everything.agda | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository ⬇️ | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Run `make Everything.agda` 🏃 | |
run: make Everything.agda | |
- name: Check if any files are changed 🔍 | |
run: | | |
if ! git diff --quiet; then | |
echo "Please run 'make Everything.agda' to regenerate files" | |
exit 1 | |
fi |