-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 1.02 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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