Skip to content

Merge remote-tracking branch 'refs/remotes/origin/main' #6

Merge remote-tracking branch 'refs/remotes/origin/main'

Merge remote-tracking branch 'refs/remotes/origin/main' #6

Workflow file for this run

# 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