Skip to content

Add ability to group comands #35

Add ability to group comands

Add ability to group comands #35

Workflow file for this run

name: Tests
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Lint
run: |
pip install -U .[dev]
black --check --diff riposte/
isort --check-only --diff riposte/
ruff check --diff riposte/
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-13, ubuntu-22.04]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Prepare virtualenv
run: python -m venv venv
- name: Package
run: |
source venv/bin/activate
pip install build
python -m build --wheel .
- name: Install
run: |
source venv/bin/activate
find dist -name *.whl | awk '{ print $0"[dev]" }' | xargs pip install
- name: Test
run: |
source venv/bin/activate
rm -rf riposte
pytest tests/