Skip to content

Commit

Permalink
run_test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
firestarx35 committed Sep 25, 2023
1 parent 863c626 commit a0d5feb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run Tests

on:
push:
branches:
- second
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python -m unittest tests.py

0 comments on commit a0d5feb

Please sign in to comment.