Skip to content

Commit

Permalink
Added CI workflow for tag creation, dropped version for new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Jul 18, 2024
1 parent e4c1b9c commit 27cf7c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: lukka/get-cmake@latest

- name: Configure the build
run: cmake -S . -B build -DSCRAN_VARIANCES_TESTS=OFF
run: cmake -S . -B build -DSCRAN_MARKERS_TESTS=OFF

- name: Install the library
run: sudo cmake --install build
Expand All @@ -30,7 +30,7 @@ jobs:
cmake_minimum_required(VERSION 3.24)
project(test_install)
add_executable(whee source.cpp)
find_package(libscran_scran_variances)
target_link_libraries(whee libscran::scran_variances)
find_package(libscran_scran_markers)
target_link_libraries(whee libscran::scran_markers)
EOF
cd _downstream && cmake -S . -B build
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.14)

project(scran_variances
VERSION 1.0.0
VERSION 0.1.0
DESCRIPTION "Model per-gene variances in single-cell expression"
LANGUAGES CXX)

Expand Down

0 comments on commit 27cf7c1

Please sign in to comment.