Set version in conandata.yml #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: unit-test | |
# FIXME: This should be a reusable workflow | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'include/**' | |
- 'tests' | |
- 'test_package/**' | |
- 'tests/**' | |
- 'cmake/**' | |
- 'conanfile.py' | |
- 'conandata.yml' | |
- 'CMakeLists.txt' | |
- 'requirements.txt' | |
- '.github/workflows/unit-test.yml' | |
- '.github/workflows/requirements*' | |
branches: | |
- main | |
- master | |
- 'CURA-*' | |
- '[0-9].[0-9]' | |
- '[0-9].[0-9][0-9]' | |
tags: | |
- '[0-9].[0-9].[0-9]' | |
- '[0-9].[0-9][0-9].[0-9]' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'include/**' | |
- 'tests' | |
- 'test_package/**' | |
- 'tests/**' | |
- 'cmake/**' | |
- 'conanfile.py' | |
- 'conandata.yml' | |
- 'CMakeLists.txt' | |
- 'requirements.txt' | |
- '.github/workflows/unit-test.yml' | |
- '.github/workflows/requirements*' | |
branches: | |
- main | |
- master | |
- '[0-9].[0-9]' | |
- '[0-9].[0-9][0-9]' | |
tags: | |
- '[0-9].[0-9].[0-9]' | |
- '[0-9].[0-9][0-9].[0-9]' | |
jobs: | |
testing: | |
name: Run unit tests | |
# FIXME: use main once merged | |
uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@CURA-11622_conan_v2 | |
with: | |
test_use_ctest: true |