Skip to content

GHA: Run unit tests in CI #53

GHA: Run unit tests in CI

GHA: Run unit tests in CI #53

Workflow file for this run

name: ⚙️ CI
on:
push:
branches:
- "main"
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
# Cancel in-progress runs on PR update and on push.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-extension:
name: 🔌 Build GDExtension
uses: ./.github/workflows/build_gdextension.yml
unit-tests:
name: 🧪 Unit tests
needs: build-extension
uses: ./.github/workflows/unit_tests.yml