Skip to content

Commit

Permalink
Merge pull request cppfastio#698 from trcrsired/master
Browse files Browse the repository at this point in the history
add ci to make next CI
  • Loading branch information
trcrsired authored Mar 31, 2024
2 parents c4b1d60 + 2463c99 commit 2189fe8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: C/C++ CI

on:
push:
branches: [ "master" ]
branches: [ "master", "next" ]
pull_request:
branches: [ "master" ]
branches: [ "master", "next" ]

jobs:
ubuntu:
Expand Down
4 changes: 4 additions & 0 deletions tests/0002.printscan/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
add_executable(print print.cc)
add_test(print print)
add_executable(scan scan.cc)
add_test(scan scan)
1 change: 1 addition & 0 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_EXTENSIONS off)
add_subdirectory(tests/0002.printscan)
add_subdirectory(tests/0026.container)

0 comments on commit 2189fe8

Please sign in to comment.