We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c72bd commit 926b185Copy full SHA for 926b185
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,30 @@
1
+name: Build
2
+on:
3
+ pull_request:
4
+ schedule:
5
+ - cron: "0 0 * * 0"
6
+
7
+jobs:
8
+ build:
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
13
+ python: ["3.11"]
14
+ include:
15
+ - python: "3.11"
16
+ tox_env: "py311-web"
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: ${{ matrix.python }}
23
+ - name: Install tox
24
+ run: |
25
+ python -m pip install --upgrade pip setuptools
26
+ pip install tox
27
+ - name: Test
28
29
+ tox -e ${{ matrix.tox_env }}
30
0 commit comments