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 6368c2f commit 7fc8b1eCopy full SHA for 7fc8b1e
.github/workflows/build.yaml
@@ -0,0 +1,31 @@
1
+name: python-loading-sdk CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.8", "3.9", "3.10"]
15
16
+ steps:
17
+ - name: Checkout sources
18
+ uses: actions/checkout@v2
19
20
+ - name: Setup Python
21
+ uses: actions/setup-python@v2
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ python -m pip install tox tox-gh-actions
29
30
+ - name: Run tox
31
+ run: tox
0 commit comments