Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MAMV3x3 committed Aug 8, 2023
1 parent b34f7ae commit f86eb88
Showing 1 changed file with 31 additions and 0 deletions.
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: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-lastest
name: Run Tests
env:
TESTING: true
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10.12'

- 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

0 comments on commit f86eb88

Please sign in to comment.