Skip to content

reorder top-level imports #548

reorder top-level imports

reorder top-level imports #548

Workflow file for this run

name: CI
on:
push:
branches: "*"
pull_request:
branches: master
jobs:
test:
name: ${{ matrix.OS }}-${{ matrix.CONDA_ENV }}-pytest
runs-on: ${{ matrix.OS }}
strategy:
fail-fast: false
matrix:
OS: [ubuntu-latest, windows-latest]
CONDA_ENV: [py38, py39, py310, py311, pip]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup conda
uses: mamba-org/setup-micromamba@v1
with:
environment-file: scripts/ci/environment-${{ matrix.CONDA_ENV }}.yml
- name: pip-install
shell: bash -l {0}
run: |
pip install . --no-deps
- name: Run Tests
shell: bash -l {0}
run: |
pytest -v intake/readers