Skip to content

feat: add automated releases with release-please and FAP upload #8

feat: add automated releases with release-please and FAP upload

feat: add automated releases with release-please and FAP upload #8

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