Skip to content

fix: update GitHub URLs to Yoder23, remove empty root __init__.py #1

fix: update GitHub URLs to Yoder23, remove empty root __init__.py

fix: update GitHub URLs to Yoder23, remove empty root __init__.py #1

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[all]"
- name: Run tests
run: python -m pytest tests/ -q
- name: Run validation suite
run: python -m validation.validate_all
security:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies and pip-audit
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[all]"
python -m pip install pip-audit
- name: Dependency audit
run: pip-audit