Skip to content

Bump version to 0.3.9 #319

Bump version to 0.3.9

Bump version to 0.3.9 #319

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir -r requirements.txt
pip install --no-cache-dir flake8 pytest
pip install --no-cache-dir -e .
- name: Lint
run: flake8 .
- name: Test
run: pytest -rP -v --cache-clear