Skip to content

[CI] Run one Action at a time #21

[CI] Run one Action at a time

[CI] Run one Action at a time #21

Workflow file for this run

name: CI - Dry Run
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cpp-dry-run:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Install Conan and Ninja
run: |
uv tool install conan
uv tool install ninja
conan profile detect
bash < .github/scripts/conan-profile.sh
- name: Generate Executable
run: make install && make build
- name: Run Main
run: ./build/template
- name: Run Debug Executable
run: ./build/template_debug