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 530d7b4 commit 64d2d69Copy full SHA for 64d2d69
.github/workflows/ci.yaml
@@ -0,0 +1,21 @@
1
+name: Python package
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Set up Python ${{ matrix.python-version }}
11
+ uses: actions/setup-python@v4
12
+ with:
13
+ python-version: "3.10"
14
+ cache: pip
15
+ - name: Install dependencies
16
+ run: |
17
+ python -m pip install --upgrade pip
18
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
19
+ - name: Test with pytest
20
21
+ pytest
requirements.txt
@@ -14,7 +14,7 @@ pluggy==1.0.0
protobuf==4.21.12
PySocks==1.7.1
pytest==7.2.2
-requests==2.28.1
+requests==2.28.2
soupsieve==2.3.2.post1
tomli==2.0.1
urllib3==1.26.13
0 commit comments