Skip to content

Genetic testing questions #1019

Genetic testing questions

Genetic testing questions #1019

# Runs the Pytest test suite when PRs are made against any branch
name: Run Pytest via Docker Compose on all PRs
on:
pull_request:
branches:
- "*"
jobs:
build-and-run-pytest-suite-in-docker-compose:
runs-on: ubuntu-latest
steps:
- name: Checkout full code repo
uses: actions/checkout@v4
with:
fetch-depth: 0 # to allow git_context_processor.py to still work
- name: Create .env file from repo secrets
run: |
echo -e "${{ secrets.ENVIRONMENT }}" | base64 -d > envs/.env
cat envs/.env
- name: Run PR check script
run: |
s/pr-check