Skip to content

Static Site Update: GitHub Pages #39

Static Site Update: GitHub Pages

Static Site Update: GitHub Pages #39

Workflow file for this run

name: Feature Test Cases
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install pytest
run: |
python -m pip install pytest
- name: Run pytest
run: |
PYTHONPATH=. pytest --maxfail=1 --disable-warnings