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