Skip to content

fix(animation): animate both paws concurrently (#78) #8

fix(animation): animate both paws concurrently (#78)

fix(animation): animate both paws concurrently (#78) #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc make libwayland-dev wayland-protocols \
clang-format clang-tidy
- name: Check formatting
run: make format-check
- name: Build release
run: make release
- name: Build debug (ASan + UBSan)
run: make clean && make debug
- name: Run tests
run: make test