Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LisPrzemyslaw committed Jul 21, 2024
2 parents 770d49f + a03031a commit 28637ae
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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 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 $(git ls-files '*.py')
- name: Test with pytest
run: |
pytest tests

0 comments on commit 28637ae

Please sign in to comment.