We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1adcd1 commit d775aecCopy full SHA for d775aec
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Test
2
+
3
+on: [push, pull_request, workflow_dispatch]
4
5
+env:
6
+ FORCE_COLOR: 1
7
8
+jobs:
9
+ test:
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
15
+ os: [ubuntu-latest, macos-latest]
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install -U pip
27
+ python -m pip install ".[dev]"
28
29
+ - name: Test
30
31
+ python -m pytest
0 commit comments