Skip to content

Commit

Permalink
Increase minimal required CMake version to 3.5.
Browse files Browse the repository at this point in the history
This removes a warning from recent CMake versions that compatibility
with CMake versions older than 3.5 is soon to be removed.
  • Loading branch information
mity committed Dec 4, 2023
1 parent 40d3ac7 commit 6422f8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.5)
project(hsluv-c C)


Expand Down

0 comments on commit 6422f8c

Please sign in to comment.