Skip to content

Merge pull request #9 from glektarssza/feature/common-lib #9

Merge pull request #9 from glektarssza/feature/common-lib

Merge pull request #9 from glektarssza/feature/common-lib #9

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: On Push
on:
push:
branches:
- main
jobs:
build:
name: Build
uses: ./.github/workflows/build.yaml
strategy:
fail-fast: true
matrix:
build-os:
- ubuntu-latest
- macos-latest
- windows-latest
build-configuration:
- Debug
- Release
secrets:
github-token: ${{secrets.GITHUB_TOKEN}}
with:
build-os: ${{matrix.build-os}}
build-configuration: ${{matrix.build-configuration}}
test:
name: Test
uses: ./.github/workflows/test.yaml
strategy:
fail-fast: true
matrix:
build-os:
- ubuntu-latest
- macos-latest
- windows-latest
secrets:
github-token: ${{secrets.GITHUB_TOKEN}}
reportgenerator-license: ${{secrets.REPORTGENERATOR_LICENSE}}
with:
build-os: ${{matrix.build-os}}