8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02cf279 commit 3097103Copy full SHA for 3097103
.github/workflows/tests.yml
@@ -1,12 +1,6 @@
1
name: Tests
2
3
-on:
4
- push:
5
- branches:
6
- - master
7
- pull_request:
8
9
+on: [push, pull_request, workflow_dispatch]
10
11
jobs:
12
build_ubuntu:
@@ -17,13 +11,16 @@ jobs:
17
- '3.8'
18
- '3.9'
19
13
- '3.10'
14
+ - '3.11'
20
15
name: ${{ matrix.python }}
21
16
runs-on: ubuntu-latest
22
steps:
23
- - uses: actions/checkout@v2
24
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
25
with:
26
python-version: ${{ matrix.python }}
+ cache: pip
+ cache-dependency-path: ".github/workflows/tests.yml"
27
- name: setup
28
run: |
29
python --version
0 commit comments