Skip to content

Implemented 16-bit version of the code for more flexibility #16

Implemented 16-bit version of the code for more flexibility

Implemented 16-bit version of the code for more flexibility #16

Workflow file for this run

name: C CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-tidy
run: sudo apt-get update && sudo apt-get install -y clang-tidy
- name: Check formatting
run: make format-check
- name: Lint
run: make lint
- name: Build
run: make