Skip to content

Update for releasing the package #13

Update for releasing the package

Update for releasing the package #13

Workflow file for this run

name: Code Check
on:
pull_request:
types: [opened, reopened, synchronize, edited, closed]
push:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Testing Check
run: pytest --cov=tonalite
- name: Formatting Check
run: black --check .
- name: Typing Check
run: mypy tonalite
- name: Linting Check
run: pylint tonalite