Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run Tests

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install dependencies & test
run: |
sudo apt-get update
sudo apt-get install -y gzip tar zstd python3 python3-pip python3-venv
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt

chmod +x test.sh
./test.sh
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
*~
.coverage*
.idea
test_data/
coverage.xml
venv/
Loading