Bump certifi from 2023.7.22 to 2024.7.4 #406
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: Mypy | |
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 mypy |