We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ca5096 commit e109817Copy full SHA for e109817
.github/workflows/ci.yml
@@ -1,18 +1,27 @@
1
name: CI
2
3
on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ run_check:
7
+ description: 'Run checks'
8
+ required: false
9
+ default: true
10
+ type: boolean
11
+ run_test:
12
+ description: 'Run tests'
13
14
15
16
push:
17
branches:
- - "*"
18
+ - dev
19
- master
20
tags:
21
- v*
22
pull_request:
23
- schedule:
- # Daily at 05:14
- - cron: '14 5 * * *'
24
25
26
jobs:
27
test:
0 commit comments