Skip to content

docs: align README and instructions #44

docs: align README and instructions

docs: align README and instructions #44

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deps
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
python -m pip install -r lambdas/ingest/requirements.txt
- name: Unit tests
run: |
python -m pytest -q
terraform-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Terraform
uses: hashicorp/setup-terraform@v3
- name: Terraform fmt (check)
run: |
terraform fmt -check -recursive infra/terraform