Skip to content

Update check-pr.yml #208

Update check-pr.yml

Update check-pr.yml #208

Workflow file for this run

# This workflow runs upon new commits and PRs
# 1. chapter quality check for known issues
# 2. code quality checks, configured in .pre-commit-config.yaml and setup.cfg
name: Check new commits and PRs
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: write
issues: write
jobs:
check:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 1 # 0 if you want to push to repo
- name: Python set up
uses: actions/setup-python@v5
with:
python-version: "3.10"
# cache: "pip"
- name: Python cache set up
uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-py-cache
- name: LaTeX cache restore
id: latex-cache-restore
uses: actions/cache/restore@v4
with:
path: |
chapters
hpmor.pdf
key: ${{ runner.os }}-latex-cache
- name: check 1
run: |
ls -l hpmor.*
ls -l chapters/hpmor-chapter-000.*
- name: mod
run: |
cp hpmor.tex hpmor.pdf
cp hpmor.tex chapters/hpmor-chapter-000.aux
- name: check 2
run: |
ls -l hpmor.*
ls -l chapters/hpmor-chapter-000.*
- name: LaTeX cache save1
id: latex-cache-save
uses: actions/cache/save@v4
with:
path: |
chapters
hpmor.pdf
key: ${{ steps.latex-cache-restore.outputs.cache-primary-key }}
# - name: Check chapters for known issues
# run: python3 -O scripts/check_chapters.py
# - name: Check pre-commit tests
# uses: pre-commit/action@v3.0.1