27 lines
602 B
YAML
27 lines
602 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
# Example #1: Build Linux, run tests, but don't package
|
|
build-test-linux:
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
platform: linux
|
|
run-tests: false
|
|
package-dist: false
|
|
|
|
# Example #2: Build Windows, no tests, but package artifacts
|
|
build-package-windows:
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
platform: windows
|
|
run-tests: false
|
|
package-dist: false
|
|
|
|
# You can add more calls here for different combos of
|
|
# (run-tests, package-dist), or do matrix expansions, etc.
|