Skip to content

update ci

update ci #288

Workflow file for this run

name: ci
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
# python-versions: [ "3.8", "3.9", "3.10" ]
python-versions: [ "3.9" ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-versions }}
- uses: extractions/setup-just@v1
- name: Install dependencies
run: |
sudo apt-get install libsndfile1
just install-poetry
poetry install
- name: test
run:
poetry run pytest
- name: Check source formatting
run:
ruff format --check
- name: Source code linting
run:
ruff check