Skip to content
Closed
Show file tree
Hide file tree
Changes from 5 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
27 changes: 8 additions & 19 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run Spell Checker
uses: crate-ci/typos@master

Expand All @@ -78,21 +78,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
os:
- linux
- win64
include:
- os: linux
runner-image: ubuntu-20.04
- os: win64
runner-image: windows-2022
python-version: [3.9, 3.10, 3.11, 3.12]
os: [ubuntu-20.04, windows-2022]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Conda environment
uses: conda-incubator/setup-miniconda@v2.2.0
with:
Expand All @@ -111,8 +100,8 @@ jobs:
ls idaes_examples
pytest -v idaes_examples --ignore=idaes_examples/notebooks/docs/surrogates/sco2/alamo/
- name: Upload pytest-xdist worker logs
if: success() || failure()
uses: actions/upload-artifact@v3
if: always()
uses: actions/upload-artifact@v4
with:
name: pytest_worker_logs
path: "tests_*.log"
name: pytest_worker_logs-${{ matrix.os }}-py${{ matrix.python-version }}
path: tests_*.log
Loading