Skip to content

Draft attempt at ingestion using mapping file #28

Draft attempt at ingestion using mapping file

Draft attempt at ingestion using mapping file #28

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
paths:
- '**.py'
- '.github/workflows/tests.yml'
pull_request:
branches: [ main ]
paths:
- '**.py'
- '.github/workflows/tests.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install '.[test]'
- name: Test with pytest
run: |
python3 -m pytest --cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}