diff --git a/.github/workflows/autotools.yml b/.github/workflows/actions.yml similarity index 100% rename from .github/workflows/autotools.yml rename to .github/workflows/actions.yml diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml deleted file mode 100644 index dfb78b2..0000000 --- a/.github/workflows/cmake.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: CMake build - -on: - push: - pull_request: - schedule: - - cron: '0 0 1 * *' - -jobs: - build: - strategy: - matrix: - os: - [ - ubuntu-latest, - macos-latest, - windows-latest, - ] - - runs-on: ${{ matrix.os }} - - env: - BUILD: _build - - steps: - - uses: actions/checkout@v2 - - - name: Prepare build directory - run: mkdir ${{ env.BUILD }} - - - name: Configure - run: cmake -S . -B ${{ env.BUILD }} - - - name: Build - run: cmake --build ${{ env.BUILD }} - - - name: Test - run: ctest --test-dir ${{ env.BUILD }} -V -C Debug