-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1002d63
commit 08c0424
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-20.04, ubuntu-22.04, windows-latest] | ||
os: [macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-latest] | ||
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | ||
|
||
steps: | ||
|
@@ -36,12 +36,12 @@ jobs: | |
# Remove apt repos that are known to break from time to time. | ||
# See https://github.com/actions/virtual-environments/issues/323 | ||
- name: Remove broken apt repos [Ubuntu] | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' | ||
run: | | ||
for apt_file in `grep -lr microsoft /etc/apt/sources.list.d/`; do sudo rm $apt_file; done | ||
- name: Install tools (Linux) | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install chktex | ||
|
@@ -62,14 +62,14 @@ jobs: | |
mypy --ignore-missing-imports --strict src/ | ||
- name: Statick Markdown | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' | ||
uses: sscpac/[email protected] | ||
with: | ||
profile: documentation.yaml | ||
timings: true | ||
|
||
- name: Statick | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' | ||
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' | ||
uses: sscpac/[email protected] | ||
with: | ||
profile: self_check.yaml | ||
|