Skip to content

* docs(Getting Started.ipynb): update title to include emoji and chan… #25

* docs(Getting Started.ipynb): update title to include emoji and chan…

* docs(Getting Started.ipynb): update title to include emoji and chan… #25

Workflow file for this run

name: Tests
on:
push:
branches: [ master, main ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
python-version:
- '3.8.x'
- '3.9.x'
- '3.10.x'
- '3.11.x'
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} test
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --no-interaction --no-ansi
- name: Run tests
run: pytest
shell: bash