add check for cells with imports and code (#954) #1053
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash -l {0} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
exclude: | |
- os: windows-latest | |
python-version: '3.11' | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_NIXTLA_TMP }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_NIXTLA_TMP }} | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment-cpu.yml | |
create-args: python=${{ matrix.python-version }} | |
cache-environment: true | |
- name: Install pip requirements | |
run: pip install ./ | |
- name: Tests | |
run: nbdev_test --do_print --timing --n_workers 0 --flags polars |