Skip to content

Run linter & tests #869

Run linter & tests

Run linter & tests #869

Workflow file for this run

name: Run linter & tests
on: push
jobs:
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: |
requirements/base.txt
requirements/local.txt
- name: Run pre-commit
uses: pre-commit/[email protected]
env:
SKIP: no-commit-to-branch
test:
env:
MARKLOGIC_HOST: ""
MARKLOGIC_USER: ""
MARKLOGIC_PASSWORD: ""
name: Run unit tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@main
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install -r requirements/local.txt
- run: python -m pytest ds-caselaw-ingester/tests.py