Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Static Site Update: GitHub Pages #41

Static Site Update: GitHub Pages

Static Site Update: GitHub Pages #41

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