-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and update existing
- Loading branch information
Showing
5 changed files
with
67 additions
and
1 deletion.
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
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
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,53 @@ | ||
name: rc-testing | ||
|
||
on: | ||
workflow_dispatch: | ||
# REMOVE ME | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
# Github Actions supports ubuntu, windows, and macos virtual environments: | ||
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners | ||
ci_tests: | ||
name: ${{ matrix.name }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
include: | ||
|
||
- name: RC testing on Linux with remote data | ||
os: ubuntu-latest | ||
python: '3.11' | ||
toxenv: py311-test-predeps | ||
toxposargs: --remote-data | ||
|
||
- name: RC testing on OSX | ||
os: macos-latest | ||
python: 3.9 | ||
toxenv: py39-test-predeps | ||
|
||
- name: RC testing on Windows | ||
os: windows-latest | ||
python: '3.10' | ||
toxenv: py310-test-predeps | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Install base dependencies | ||
run: python -m pip install --upgrade pip tox | ||
- name: Test/run with tox | ||
run: tox -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} |
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