Merge remote-tracking branch 'refs/remotes/origin/main' #6
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
# SPDX-FileCopyrightText: 2024 Manu Amestoy | |
# | |
# SPDX-License-Identifier: MIT | |
name: Run Python Code Check | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
run_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: get-cmake | |
uses: lukka/get-cmake@v3.28.3 | |
- name: install make tools | |
run: | | |
sudo apt install -y build-essential | |
- name: Setup Python | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: 3.9 | |
check-latest: false | |
- name: Run Python | |
run: | | |
pip install -r requirements.txt | |
python3 codeAnalysis.py | |