maplibre-rs/.github/workflows/on_main_push.yml
Max Ammann 2b0a352f32
Run scheduled to we get to know when the build breaks because of dependencies (#154)
We do not use a .lock file, as maplibre is a library. Therefore, build could potentially fail if new updates to dependencies are pushed. By building maplibre scheduled we get to know that.
2022-07-14 08:28:06 +02:00

42 lines
1.1 KiB
YAML

name: Build & Deploy
on:
# We do not use a .lock file, as maplibre is a library. Therefore, build could potentially fail if new updates
# to dependencies are pushed. By building maplibre scheduled we get to know that.
schedule:
- cron: '0 3 * * 5' # Run "At 03:00 on Friday"
workflow_dispatch:
push:
branches:
- main
jobs:
run-check:
uses: ./.github/workflows/run-checks.yml
run-benchmarks:
uses: ./.github/workflows/run-benchmarks.yml
run-tests:
uses: ./.github/workflows/run-tests.yml
build-deploy-docs:
uses: ./.github/workflows/build-deploy-docs.yml
with:
deploy: true
secrets: inherit
library-android:
uses: ./.github/workflows/library-android.yml
library-web:
uses: ./.github/workflows/library-web.yml
with:
deploy: true
secrets: inherit
library-apple:
uses: ./.github/workflows/library-apple.yml
demo-linux:
uses: ./.github/workflows/demo-linux.yml
demo-windows:
uses: ./.github/workflows/demo-windows.yml
demo-macos:
uses: ./.github/workflows/demo-macos.yml
secrets: inherit