Skip to content

issue/443/some-love-for-simpleflow-cli #134

issue/443/some-love-for-simpleflow-cli

issue/443/some-love-for-simpleflow-cli #134

Workflow file for this run

# Adapted from: https://github.com/sesh/thttp/blob/main/.github/workflows/ci.yml
# Thanks!
name: Python Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-beta.4", "pypy-3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
pip install -e .[dev]
- name: Test
run: |
./script/test -v