-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed way to test python 3.10 environment in CI
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 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,4 +1,4 @@ | ||
name: ci | ||
name: GeoST CI | ||
|
||
on: | ||
push: | ||
|
@@ -29,14 +29,15 @@ jobs: | |
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
environment: [py310] | ||
python-version: | ||
- "3.10" | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
- name: Setup Pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
environments: ${{ matrix.environment }} | ||
- name: Setup older Python versions | ||
run: pixi add python=${{ matrix.python-version }} | ||
- name: Run Tests | ||
run: pixi run test | ||
|
||
|