Skip to content

Simplify if/else statement to ternary operator #909

Simplify if/else statement to ternary operator

Simplify if/else statement to ternary operator #909

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: ml-host
MARKLOGIC_USER: ml-user
MARKLOGIC_PASSWORD: ml-password
MARKLOGIC_USE_HTTPS: 0
AWS_BUCKET_NAME: judgments-original-versions
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