feat: Add file size to schema #1335
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ingestor tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "ingestion_tools/**" | |
pull_request: | |
paths: | |
- "ingestion_tools/**" | |
jobs: | |
py-test: | |
name: "Run tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Set up a local test env and run tests | |
- name: Run tests | |
run: | | |
make ingestor-init | |
make ingestor-test-db-init | |
make ingestor-test-db | |
make ingestor-test-s3 |