Skip to content

devops: split pipeline in CI and CD #1

devops: split pipeline in CI and CD

devops: split pipeline in CI and CD #1

Workflow file for this run

name: CI
on:
push:
branches:
- '**' # Matches all branches
pull_request:
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: build
uses: ./.github/actions/build
with:
configuration: Debug
useVersioning: false
- name: test
uses: ./.github/actions/test