add skip test for actions #10
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Python application | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Install poetry & configure | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry==1.7.1 | |
poetry config virtualenvs.in-project true | |
- name: Install PortAudio | |
run: sudo apt-get install -y portaudio19-dev | |
- name: Install dependencies | |
run: | | |
poetry check | |
poetry check --lock | |
poetry install | |
- name: Static code analysis | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
poetry run ruff check $(git ls-files '*.py') | |
- name: Test with pytest | |
run: | | |
poetry run pytest -svv tests |