From 935b8850c8d73c429b51be0593d60231da4427d5 Mon Sep 17 00:00:00 2001 From: Rasmus Anthin <32767250+razterizer@users.noreply.github.com> Date: Mon, 30 Sep 2024 18:31:11 +0200 Subject: [PATCH] Update build-and-test-ubuntu.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Perhaps a good idea to look at the output from ChatGPT before committing it 🤦‍♂️ . --- .github/workflows/build-and-test-ubuntu.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-and-test-ubuntu.yml b/.github/workflows/build-and-test-ubuntu.yml index 5a73532..354b59b 100644 --- a/.github/workflows/build-and-test-ubuntu.yml +++ b/.github/workflows/build-and-test-ubuntu.yml @@ -117,21 +117,15 @@ jobs: runs-on: ubuntu-latest steps: - # Step 1: Checkout the 8Beat repository + # Checkout the 8Beat repository - name: Checkout 8Beat repository uses: actions/checkout@v3 - - # Step 2: Move to the parent directory and fetch dependencies (if needed) - - name: Fetch dependencies - run: | - cd .. - git clone https://github.com/razterizer/8Beat.git - - # Step 3: Install cppcheck + + # Install cppcheck - name: Install cppcheck run: sudo apt-get install cppcheck - # Step 4: Run cppcheck on 8Beat headers + # Run cppcheck on 8Beat headers - name: Run cppcheck run: | cppcheck --enable=all --inconclusive --error-exitcode=1 8Beat/include