Fixed Mitesh's Bubble Shooter #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: checks | |
on: | |
push: | |
jobs: | |
checks: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y \ | |
build-essential \ | |
x11-apps \ | |
cmake \ | |
ninja-build \ | |
clang-format \ | |
clang-tidy | |
- name: Configure build | |
run: make configure | |
- name: Check build | |
run: make | |
- name: Check formatting | |
run: make check-format | |
- name: Run linter | |
run: make check-tidy |