Skip to content

Merge pull request #1 from JoshIri360/patch-1 #5

Merge pull request #1 from JoshIri360/patch-1

Merge pull request #1 from JoshIri360/patch-1 #5

Workflow file for this run

name: Python Install and Test
on:
push:
branches: [ '\d+.x' ]
pull_request:
branches: [ '\d+.x' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
install-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Run tests
- name: Run tests
run: pytest