Remove old version of simulation. In KiCad model added draft of HV st… #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Code Analysis | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install flake8 and run tests | |
if: always() | |
run: | | |
sudo pip install flake8 flake8-html | |
cd ./ContinuousIntegration | |
chmod +x ./run_python_static_code_analysis.sh | |
ls | |
./run_python_static_code_analysis.sh | |
- name: Archive Python results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: Report for Python sources | |
path: ./ContinuousIntegration/python_lint_report/ | |