-
-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sphinx unpinned. lxml pinned as <5 rather than a specific version. Experimentally, add two workflows: Ubuntu 24.04 and Windows 2022 Signed-off-by: Mats Wichmann <[email protected]>
- Loading branch information
Showing
3 changed files
with
8 additions
and
7 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Linux Testing | ||
name: Full Test Suite | ||
|
||
# Controls when the workflow will run | ||
on: | ||
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
os: ['ubuntu-22.04'] | ||
os: ['ubuntu-22.04', 'ubuntu-24.04', 'windows-latest'] | ||
|
||
# The type of runner that the job will run on | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -30,10 +30,11 @@ jobs: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/[email protected] | ||
|
||
- name: Set up Python 3.10 ${{ matrix.os }} | ||
uses: actions/[email protected] | ||
# Defaults are: 22.04 - 3.10, 24.04 - 3.12, windows-latest 3.9 | ||
- name: Set up Python 3.12 ${{ matrix.os }} | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.12' | ||
|
||
- name: Install dependencies including ninja ${{ matrix.os }} | ||
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
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