forked from openWB/core
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 907 Bytes
/
github-actions-python.yml
File metadata and controls
30 lines (28 loc) · 907 Bytes
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
name: Python application
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9.12"
- name: Install dependencies
run: |
pip3 install -r "/home/runner/work/core/core/requirements.txt"
- name: Flake8 with annotations in packages folder
uses: TrueBrain/actions-flake8@v2.1
with:
path: packages
flake8_version: 5.0.4
- name: Flake8 with annotations in runs folder
uses: TrueBrain/actions-flake8@v2.1
with:
path: runs
flake8_version: 5.0.4
- name: Test with pytest
run: |
PYTHONPATH=packages python -m pytest packages --log-cli-level=DEBUG
PYTHONPATH=runs python -m pytest packages --log-cli-level=DEBUG