Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name: Verify hello app
name: server-sdk
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 9 * * *'
- cron: '0 9 * * *'
push:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
paths:
- 'server-sdk/**'
- '.github/workflows/server-sdk.yml'
pull_request:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md'
paths:
- 'server-sdk/**'
- '.github/workflows/server-sdk.yml'

jobs:
build-and-run:
Expand Down
Loading