-
Notifications
You must be signed in to change notification settings - Fork 8
40 lines (37 loc) · 1.38 KB
/
yacg_test.yml
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
40
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: yacg tests
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: '3.10'
- name: Install virtualenv
run: |
pip install virtualenv
pip install flake8
- name: Install dependencies
run: |
[[ -d venv ]] || virtualenv venv
source venv/bin/activate
- name: Install dependencies
run: |
[[ -d venv ]] || virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --exclude venv --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --exclude venv --count --exit-zero --max-complexity=15 --max-line-length=127 --statistics --per-file-ignores='yacg/model/*.py:E501 E303 W391'
- name: Run and stuff from command line
run: |
bin/runGithubActions.sh