Skip to content

Commit e9c1a9c

Browse files
committed
Fixed CI
1 parent a10d197 commit e9c1a9c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ubuntu.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Compile, run tests and check code style
22

33
on:
44
push:
5-
branches: [ "master", "test-ci" ]
5+
branches:
6+
- '**'
67
pull_request:
7-
branches: [ "master" ]
8+
branches:
9+
- '**'
810

911
jobs:
1012
build:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.25)
33
set(CMAKE_CXX_STANDARD 20)
44

55
set(CUBOOL_GRAPH_LIB_NAME cuboolgraph)
6-
project(${CUBOOL_GRAPH_LIB_NAME} LANGUAGES CXX CUDA)
6+
project(${CUBOOL_GRAPH_LIB_NAME} LANGUAGES CXX)
77

88
add_library(${CUBOOL_GRAPH_LIB_NAME} SHARED "")
99

0 commit comments

Comments
 (0)