mirror of
https://github.com/slimtoolkit/slim.git
synced 2025-06-03 04:00:23 +00:00
16 lines
469 B
YAML
16 lines
469 B
YAML
# List the start up tasks. You can start them in parallel in multiple terminals.
|
|
# https://www.gitpod.io/docs/config-start-tasks/
|
|
tasks:
|
|
- init: >
|
|
make tools build
|
|
command: make inspect
|
|
|
|
# Enable prebuilds of your project to enable faster workspace start times.
|
|
# https://www.gitpod.io/docs/prebuilds/#configure-the-github-app
|
|
github:
|
|
prebuilds:
|
|
master: true
|
|
branches: true
|
|
pullRequests: true
|
|
pullRequestsFromForks: true
|
|
addCheck: true |