Skip to content
Draft
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
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
types: [published]
schedule:
- cron: '0 2 * * 3,6'

# runner images:
# https://github.com/actions/runner-images
jobs:
run-unit-and-integration-tests-with-conda-install:
runs-on: ${{ matrix.os }}
Expand All @@ -18,10 +21,10 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest",
"macos-13",
"macos-latest",
# "windows-latest" # rrcovNA cannot be build from source on windows-server
]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -76,7 +79,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading