-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update CI workflow to include Python 3.11 and Windows testing
- Loading branch information
Showing
4 changed files
with
95 additions
and
41 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: "*" | ||
pull_request: | ||
branches: main | ||
|
||
jobs: | ||
linux: | ||
name: ${{ matrix.python-version }}-posix | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 5 | ||
matrix: | ||
python-version: ['3.11'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Miniconda | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
cache-downloads: true | ||
condarc: | | ||
channels: | ||
- conda-forge | ||
create-args: | | ||
python=${{ matrix.python-version }} | ||
environment-name: FES | ||
environment-file: conda/environment.yml | ||
|
||
- name: Compile and Testing Python Package | ||
shell: bash -l {0} | ||
run: | | ||
python setup.py build | ||
pytest -v -ra --processes | ||
- name: Build C++ Library and Testing | ||
shell: bash -l {0} | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. -DFES_ENABLE_TEST=ON | ||
make | ||
ctest | ||
win: | ||
name: win | ||
runs-on: windows-2019 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Miniconda | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
cache-downloads: true | ||
condarc: | | ||
channels: | ||
- conda-forge | ||
create-args: | | ||
python=3.11 | ||
environment-name: FES | ||
environment-file: conda/environment.yml | ||
|
||
- name: Building Testing Python Package | ||
shell: bash -l {0} | ||
run: | | ||
python setup.py build | ||
pytest -v -ra --processes |
This file was deleted.
Oops, something went wrong.
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