π fix: Fixing inability to stop music after it starts playing - fixed #9 #15
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install cppcheck | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cppcheck | |
- name: Run cppcheck | |
run: | | |
cppcheck --error-exitcode=1 --force --language=c++ src/*.h |