Skip to content

update imports

update imports #67

Workflow file for this run

name: test
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install package
run: |
python -m pip install --upgrade pip
pip install '.[test]'
- name: Download filters
run: |
xspect download-filters
- name: Test with pytest
run: |
pytest --cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}