Skip to content

github: try getting tags in test job #5

github: try getting tags in test job

github: try getting tags in test job #5

Workflow file for this run

# Copyright (c) 2023 Intercreate, Inc.
# SPDX-License-Identifier: Apache-2.0
#
# Authors: J.P. Hutchins <[email protected]>
name: Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup GIT
run: |
git config --global user.name "Intercreate"
git config --global user.email [email protected]
- name: Configure & run tests
run: |
git fetch --force --tags
cmake -B tests/build -S tests --log-level=NOTICE