Skip to content
Closed
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
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Runs Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run Tests
env:
TESTING: true
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v4
with:
python-versions: '3.6.8' #Changes to desired python version

- name: Setup Python Virtual Environment
run: python -m venv python3-virtualenv

- name: Install Dependencies
run: python3-virtualenv/bin/pip install -r requirements.txt

- name: Run Tests
run: ./run_test.sh
Loading