Skip to content

bump version 1.9.12 + changelog, metadata #185

bump version 1.9.12 + changelog, metadata

bump version 1.9.12 + changelog, metadata #185

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- master
defaults:
run:
shell: bash -l {0}
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements_dev.txt
- name: Lint check
run: make lint