-
Notifications
You must be signed in to change notification settings - Fork 74
55 lines (47 loc) · 1.43 KB
/
predeps_workflows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: rc-testing
on:
workflow_dispatch:
schedule:
# run at 9am UTC on Tuesdays
- cron: '0 9 * * 2'
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:
fail-fast: false
matrix:
include:
- name: RC testing on Linux with remote data
os: ubuntu-latest
python: '3.12'
toxenv: py312-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.11'
toxenv: py311-test-predeps
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }}
uses: actions/setup-python@v5
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 }}