-
-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Upgrade to latest actions & python versions
- Loading branch information
Showing
1 changed file
with
15 additions
and
27 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 |
---|---|---|
|
@@ -4,54 +4,42 @@ name: Default CI/CD | |
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
- uses: pre-commit/[email protected].0 | ||
python-version: "3.12" | ||
- uses: pre-commit/[email protected].1 | ||
test: | ||
needs: [pre-commit] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] | ||
exclude: | ||
- os: macos-latest | ||
python-version: 3.7 | ||
- os: macos-latest | ||
python-version: 3.8 | ||
- os: macos-latest | ||
python-version: 3.9 | ||
- os: macos-latest | ||
python-version: "3.10" | ||
os: [ubuntu-latest] | ||
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] | ||
include: | ||
- os: windows-latest | ||
python-version: 3.7 | ||
- os: windows-latest | ||
python-version: 3.8 | ||
- os: windows-latest | ||
python-version: 3.9 | ||
- os: windows-latest | ||
python-version: "3.10" | ||
python-version: "3.12" | ||
- os: macos-latest | ||
python-version: "3.12" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools | ||
pip install -r requirements.txt -r requirements-extra.txt | ||
- name: Build python modules | ||
run: | | ||
|
@@ -61,7 +49,7 @@ jobs: | |
pytest core hscommon | ||
- name: Upload Artifacts | ||
if: matrix.os == 'ubuntu-latest' | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: modules ${{ matrix.python-version }} | ||
path: ${{ github.workspace }}/**/*.so |