Skip to content

feat: Attempting outputs #9

feat: Attempting outputs

feat: Attempting outputs #9

Workflow file for this run

name: Lazarus Main Workflow
permissions:
contents: write
defaults:
run:
shell: bash
on:
push:
branches: [ main ]
tags: [ "*" ]
paths-ignore: [ "README.md", "history.md", "release-notes.md" ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build Application
uses: ./.github/workflows/build.lazarus.yml
with:
app_name: MyApp
lpi_path: src/MyApp.lpi
triplets: '{"win": "x86_64-win64", "lin": "x86_64-linux", "osx": "x86_64-darwin"}'
strategy:
fail-fast: true
test:
name: Test Application
uses: ./.github/workflows/test.lazarus.yml
with:
app_name: MyApp
lpi_path: tests/MyAppTest.lpi
strategy:
fail-fast: true