Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ on:
push:
branches:
- main

pull_request:
branches:
- main

# Enable manually triggering this workflow
workflow_dispatch:

schedule:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
#
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,16 @@ name: "Run tests"

on:
push:
branches: [ main ]
branches:
- main

pull_request:
branches: [ main ]
branches:
- main

# Enable manually triggering this workflow
workflow_dispatch:

schedule:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
#
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/typecheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,16 @@ name: Typecheck

on:
push:
branches: [ main ]
branches:
- main

pull_request:
branches: [ main ]
branches:
- main

# Enable manually triggering this workflow
workflow_dispatch:

schedule:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
#
Expand Down
Loading