Skip to content

Fix build on Ubuntu Noble #63

Fix build on Ubuntu Noble

Fix build on Ubuntu Noble #63

name: Build Feature Branch
on:
pull_request:
branches:
- main
jobs:
check:
uses: ./.github/workflows/check.yml
lint:
needs: check
uses: ./.github/workflows/lint.yml
with:
build_type: Debug
test:
needs: lint
uses: ./.github/workflows/test.yml
build:
needs: test
strategy:
matrix:
build_type: [Release, Debug]
uses: ./.github/workflows/build.yml
with:
build_type: ${{ matrix.build_type }}