Skip to content

Timer

Timer #26

Workflow file for this run

name: Lint CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Fixes: https://github.com/actions/checkout/issues/135
- name: Set git to use LF.
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- name: Install dependencies.
run: sudo apt-get install -y clang-format
- name: Lint
run: make check