-
Notifications
You must be signed in to change notification settings - Fork 33
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
fullbat
committed
Mar 15, 2024
1 parent
bb929cb
commit 5beeeb0
Showing
2 changed files
with
15 additions
and
21 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 |
---|---|---|
|
@@ -13,22 +13,20 @@ jobs: | |
{os: ubuntu-20.04, py: '3.10'}, | ||
{os: ubuntu-20.04, py: '3.11'}, | ||
# {os: ubuntu-20.04, py: '3.12'}, | ||
# {os: macos-latest, py: '3.8'}, | ||
# {os: macos-latest, py: '3.9'}, | ||
# {os: macos-latest, py: '3.10'}, | ||
# {os: macos-latest, py: '3.11'}, | ||
{os: macos-latest, py: '3.8'}, | ||
{os: macos-latest, py: '3.9'}, | ||
{os: macos-latest, py: '3.10'}, | ||
{os: macos-latest, py: '3.11'}, | ||
# {os: macos-latest, py: '3.12'}, | ||
# {os: macos-14, py: '3.10'}, | ||
# {os: macos-14, py: '3.11'}, | ||
{os: macos-14, py: '3.10'}, | ||
{os: macos-14, py: '3.11'}, | ||
# {os: macos-14, py: '3.12'} | ||
] | ||
name: Python ${{ matrix.config.py }} on ${{ matrix.config.os }} | ||
runs-on: ${{ matrix.config.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: gcc version | ||
run: gcc --version | ||
- name: Download data | ||
working-directory: tests | ||
run: | | ||
|
@@ -43,8 +41,9 @@ jobs: | |
python-version: ${{ matrix.config.py }} | ||
- name: Install dmri-commit | ||
run: pip install . --no-cache-dir --force-reinstall | ||
- name: pip list | ||
- name: Print info | ||
run: | | ||
gcc --version | ||
python -V | ||
pip list | ||
- name: Run test | ||
|
@@ -54,11 +53,6 @@ jobs: | |
echo "Run tests" | ||
python test_demo.py | ||
continue-on-error: true | ||
- name: Download results | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: kernels-results | ||
path: tests/demo_data/kernels | ||
- name: Check on failures | ||
if: steps.run_test.outcome != 'success' | ||
run: | | ||
|
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