Trying to run tests on kicad_auto_test image

This commit is contained in:
Salvador E. Tropea 2020-04-28 18:30:27 -03:00
parent ba22eae5b8
commit e18b9cea81
1 changed files with 6 additions and 10 deletions

View File

@ -13,19 +13,15 @@ jobs:
build:
runs-on: ubuntu-latest
container: setsoft/kicad_auto:latest
container: setsoft/kicad_auto_test:latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install flake8 pytest
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names