From 6d8ad333390dae8cb8117e42c6633ff9c044d208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20M=C3=A5rdbrink?= Date: Tue, 26 Aug 2025 14:01:26 +0200 Subject: [PATCH] Remove workflows --- .github/workflows/build-and-test.yml | 34 ---------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/build-and-test.yml diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml deleted file mode 100644 index 4bf00e5..0000000 --- a/.github/workflows/build-and-test.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: CMake Build and Test - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y cmake build-essential - - - name: Create build directory - run: mkdir -p build - - - name: Configure CMake - working-directory: build - run: cmake .. - - - name: Build - working-directory: build - run: make - - - name: Test - working-directory: build - run: ctest --output-on-failure