Skip to content

Add widths to envelope preview initializer #415

Add widths to envelope preview initializer

Add widths to envelope preview initializer #415

Workflow file for this run

# SPDX-FileCopyrightText: 2021 The SMW Music Python Project Authors <https://github.com/com-posers-pit/smw_music/blob/develop/AUTHORS.rst>
#
# SPDX-License-Identifier: CC0-1.0
# Adapted from https://github.com/snok/install-poetry
name: Bandit
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11'] #, '3.10']
steps:
- name: Install audio library
run: sudo apt install -y portaudio19-dev
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: snok/install-poetry@v1
- name: Install library
run: poetry install --no-interaction
- name: Test with tox
run: poetry run tox -e bandit