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 7404eab commit acf1ac9Copy full SHA for acf1ac9
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v3
13
14
+ - name: Install dependencies & test
15
+ run: |
16
+ sudo apt-get update
17
+ sudo apt-get install -y gzip tar zstd python3 python3-pip python3-venv python3-coverage
18
+ python3 -m venv venv
19
+ python3 -m pip install --upgrade pip
20
+ pip3 install -r requirements.txt
21
22
+ source venv/bin/activate
23
+ chmod +x test.sh
24
+ ./test.sh
.gitignore
@@ -3,3 +3,4 @@
.idea
test_data/
coverage.xml
+venv/
requirements.txt
@@ -0,0 +1,3 @@
+requests
+zstandard
+coverage
0 commit comments