Fix IsomorphismFpGroup
for perm groups to avoid unexpected errors when e.g. computing preimages
#2091
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: "Lint" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
- "stable-*.*" | |
schedule: | |
# Every day at 3:10 AM UTC | |
- cron: '10 3 * * *' | |
jobs: | |
gaplint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out the repository" | |
uses: actions/checkout@v4 | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: "Install gaplint with pip" | |
run: pip install gaplint==1.3.2 | |
- name: "Run gaplint lib/*.g* hpcgap/lib/*.g* grp/*.g lib/hpc/*.g hpcgap/lib/hpc/*.g . . ." | |
run: gaplint lib/*.g* hpcgap/lib/*.g* grp/*.g lib/hpc/*.g hpcgap/lib/hpc/*.g |