Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run different python versions #14

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, macOS-13, windows-2019]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
config: [Debug, Release]
include:
- os: ubuntu-22.04
Expand All @@ -47,7 +48,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
channels: conda-forge
python-version: 3.7
python-version: ${{ matrix.python-version }}
channel-priority: true
activate-environment: test-env

Expand All @@ -67,12 +68,11 @@ jobs:

- name: Build (Debug)
if: matrix.config == 'Debug'
run: |
python setup.py build --debug install
run: python -m pip install -v --debug .

- name: Build (Release)
if: matrix.config == 'Release'
run: python setup.py build install
run: python -m pip install -v .

- name: Fast Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion wildmeshing/parse_svg
Loading