-
Notifications
You must be signed in to change notification settings - Fork 3
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
28d21e2
commit 0f9a6b3
Showing
3 changed files
with
2,261 additions
and
566 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 |
---|---|---|
|
@@ -34,8 +34,8 @@ jobs: | |
with: | ||
pixi-version: v0.30.0 | ||
cache: true | ||
- name: Run lint checks | ||
run: pixi run lint | ||
- name: Run Pylint | ||
run: pixi run -e lint pylint | ||
|
||
checks: | ||
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} | ||
|
@@ -44,35 +44,23 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.13"] | ||
runs-on: [ubuntu-latest, windows-latest, macos-14] | ||
|
||
include: | ||
- python-version: "pypy-3.10" | ||
runs-on: ubuntu-latest | ||
environment: [ci-py309, ci-py312] | ||
runs-on: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
allow-prereleases: true | ||
|
||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.30.0 | ||
cache: true | ||
|
||
- name: Install package | ||
run: python -m pip install .[test] | ||
|
||
- name: Test package | ||
run: pixi run -e test test-ci | ||
run: pixi run test-ci | ||
|
||
- name: Upload coverage report | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
# - name: Upload coverage report | ||
# uses: codecov/[email protected] | ||
# with: | ||
# token: ${{ secrets.CODECOV_TOKEN }} |
Oops, something went wrong.