diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b6ba67b..9bfa420 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,14 +1,14 @@ -name: Compile and test +name: Build and Test on: - pull_request - push jobs: - build: + linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Configure run: cmake -DCMAKE_BUILD_TYPE=Release -G 'Unix Makefiles' . - name: Build diff --git a/CMakeLists.txt b/CMakeLists.txt index 05bcee6..999dcdf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.5) project(hsluv-c C)