Skip to content

chore(promo): add MIT LICENSE and README showcase sections #4

chore(promo): add MIT LICENSE and README showcase sections

chore(promo): add MIT LICENSE and README showcase sections #4

Workflow file for this run

name: validate
on:
push:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Suite consistency (strict)
env:
PYTHONPYCACHEPREFIX: /tmp/pycache
run: python3 scripts/validate_suite.py --strict
- name: Unit tests
env:
PYTHONPYCACHEPREFIX: /tmp/pycache
run: python3 -m unittest discover -s tests -v