Skip to content

make cli requirements optional (#16) #42

make cli requirements optional (#16)

make cli requirements optional (#16) #42

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request: ~
jobs:
tests:
name: ${{ matrix.session }} ${{ matrix.python-version }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
env:
NOXSESSION: ${{ matrix.session }}
steps:
- name: Check out the repository
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: pip install pip
- name: Setup
run: pip install -e .[cli,dev]
- name: Run Pytest
run: pytest tests