Skip to content

Add linting workflow #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
methane authored Jun 12, 2025
commit 9f7e560ef73f42f2eb295538ff4fbdcf57530e9f
10 changes: 5 additions & 5 deletions .github/workflows/lint-and-built.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Linting and Building Workflow

on:
schedule:
- cron: '0 0 * * *'
- cron: '34 12 * * SAT'
push:
branches:
- '*'
Expand All @@ -16,8 +16,8 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ '3.14', '3.13', '3.12', '3.11', '3.10', '3.9' ]
format: [ html, latex ]
version: [ '3.14', '3.13' ]
format: [ html, epub ]
steps:
- uses: actions/setup-python@master
with:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '3.14', '3.13', '3.12', '3.11', '3.10', '3.9' ]
version: [ '3.14', '3.13' ]
needs: [ 'build-translation' ]
steps:
- uses: actions/download-artifact@master
Expand All @@ -66,7 +66,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ '3.14', '3.13', '3.12', '3.11', '3.10', '3.9' ]
version: [ '3.14', '3.13' ]
continue-on-error: true
steps:
- uses: actions/setup-python@master
Expand Down