Skip to content

restructure and add S&LT blog #246

restructure and add S&LT blog

restructure and add S&LT blog #246

Workflow file for this run

name: Run Tests
on:
push:
branches:
- development
paths:
- '**.py'
pull_request:
branches:
- main
paths:
- '**.py'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r app/requirements.txt
- name: Test with pytest
run: |
pytest -v