-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-actions-python-package.yml
More file actions
39 lines (33 loc) · 1.15 KB
/
github-actions-python-package.yml
File metadata and controls
39 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on: [push, workflow_dispatch]
env:
PYLINT_CONFIG: .pylintrc
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
working-directory: ./backend
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with Pylint
working-directory: ./backend
run: |
# Stop the build if there are Python linting errors
pylint --rcfile $PYLINT_CONFIG src tests
- name: Test with pytest
working-directory: ./backend
run: |
pytest --cov=src --cov-fail-under=80 --cov-branch --cov-report=term tests