Skip to content

chore(deps): bump actions/setup-python from 5 to 6 #17

chore(deps): bump actions/setup-python from 5 to 6

chore(deps): bump actions/setup-python from 5 to 6 #17

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cppcheck clang-format
- name: Run linter
run: make linter
- name: Check format
run: clang-format --dry-run --Werror *.c *.h tests/*.c
- name: Run tests
run: make test