Updated inda to 3.7 #91
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
name: CI Build | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
- '.vscode/**' | |
- '.devcontainers/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
- '.vscode/**' | |
- '.devcontainers/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: python:3.11-slim | |
# Required services | |
services: | |
redis: | |
image: redis:6-alpine | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install poetry | |
poetry config virtualenvs.create false | |
poetry install | |
- name: Linting | |
run: | | |
flake8 service tests --count --select=E9,F63,F7,F82 --show-source --statistics | |
flake8 service tests --count --max-complexity=10 --max-line-length=127 --statistics | |
pylint service tests --max-line-length=127 | |
- name: Run unit tests with PyTest | |
run: pytest | |
env: | |
DATABASE_URI: "redis://redis:6379/0" | |
- name: Upload code coverage | |
uses: codecov/[email protected] |