Skip to content

Merge pull request #20 from FrankMaverick/main #14

Merge pull request #20 from FrankMaverick/main

Merge pull request #20 from FrankMaverick/main #14

Workflow file for this run

name: Test
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests pytest
- name: Run tests
run: pytest -s ./tests/*.py