Bump Copyright Year to 2025 #197
Workflow file for this run
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
test-project: | |
name: Test Project | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Configure Project | |
uses: threeal/cmake-action@v2.1.0 | |
with: | |
options: GIT_CHECKOUT_ENABLE_TESTS=ON | |
run-build: false | |
- name: Test Project | |
uses: threeal/ctest-action@v1.1.0 |