This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
old WIP trying to replace fractional_ideal by submodule in class_group: to be ported #7382
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: Add mathlib4 porting warnings | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Check for modifications to ported files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8 | |
- name: install latest mathlibtools | |
run: | | |
pip install git+https://github.com/leanprover-community/mathlib-tools | |
# TODO: is this really faster than just calling git from python? | |
- name: Get changed files | |
id: changed-files | |
uses: Ana06/[email protected] | |
- name: run the script | |
run: | | |
python scripts/detect_ported_files.py ${{ steps.changed-files.outputs.all }} |