We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0f74a4 commit 38f236cCopy full SHA for 38f236c
1 file changed
.github/workflows/tests.yml
@@ -1,18 +1,34 @@
1
name: tests
2
3
on:
4
+ pull_request:
5
+ branches: [main]
6
push:
7
8
jobs:
9
tests:
- name: "Run tests"
10
+ name: 'Run tests on py${{ matrix.python-version }}'
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ include:
16
+ - python-version: '3.6'
17
+ - python-version: '3.7'
18
+ - python-version: '3.8'
19
+ - python-version: '3.9'
20
+ - python-version: '3.10'
21
+ - python-version: '3.11'
22
+ - python-version: '3.12'
23
+
24
steps:
25
- name: Clone vplot repo
- uses: actions/checkout@v2
26
+ uses: actions/checkout@v3
27
with:
28
fetch-depth: 0
29
30
31
32
- name: Set up Python
33
uses: conda-incubator/setup-miniconda@v2
34
0 commit comments