Skip to content

Commit

Permalink
Add Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
willtheorangeguy committed Nov 11, 2023
1 parent bcb1fc9 commit 1411fdd
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Python Tests

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- 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 pytest
pip install pytest-mock
pip install -r requirements.txt
- name: Run tests
run: |
pytest tests/test_send.py

0 comments on commit 1411fdd

Please sign in to comment.