Skip to content

Reference reusable action from local repo #3

Reference reusable action from local repo

Reference reusable action from local repo #3

name: Build and test
on:
pull_request:
types:
- opened # triggers build when opened
- synchronize # triggers build when commits are pushed to HEAD
branches:
- "feature/**"
# Manual trigger
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
target_platform:
- ubuntu-latest
- macos-latest
build_type:
- Release
- Debug
#uses: Deltares/MeshKernel/.github/workflows/build-and-test-workflow.yml@13b53c2b5f6c25c277d753dbca553fabf4d31bbe
uses: ./build-and-test-workflow.yml

Check failure on line 28 in .github/workflows/build-and-test-feature.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-and-test-feature.yml

Invalid workflow file

invalid value workflow reference: no version specified
with:
target_platform: ${{ matrix.target_platform }}
build_type: ${{ matrix.build_type }}