Skip to content

Accept GitHub issues numbered only 32426 or above #98

Accept GitHub issues numbered only 32426 or above

Accept GitHub issues numbered only 32426 or above #98

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_dispatch]
jobs:
build_ubuntu:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: ".github/workflows/tests.yml"
- name: setup
run: |
python --version
python -m pip install --upgrade pip
python -m pip install --upgrade flit
- name: install
run: |
cd blurb
flit install
- name: test
run: |
blurb test