Skip to content

added checkout to the versioning step #7

added checkout to the versioning step

added checkout to the versioning step #7

Workflow file for this run

name: C++ CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v3
- name: Configure
run: cmake -B build -G Ninja
- name: Build
run: cmake --build build -t all
- name: Test
run: ctest --test-dir build