Skip to content

Added /health/ request with testAdded /health/ request with test.. #75

Added /health/ request with testAdded /health/ request with test..

Added /health/ request with testAdded /health/ request with test.. #75

name: 'Tests Python 3.8'
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
unit_tests_3_8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- run: pytest --github_token=${{ secrets.READ_ACCESS }}