Skip to content

⬆ Bump actions/checkout from 3 to 4 #28

⬆ Bump actions/checkout from 3 to 4

⬆ Bump actions/checkout from 3 to 4 #28

Workflow file for this run

name: Test for Quality Control
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main" ]
workflow_call:
jobs:
tests:
runs-on: ubuntu-22.04 # TODO: -latest was 20.04 and had old packages
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set up Python 3.11 🐍
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies 🔧
run: sudo apt install cppcheck
# NOTE: cppcheck is needed for pre-commit
- name: Run Pre-Commit Tests 🧪
uses: pre-commit/action@v3.0.1