File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ #
2+ # Author: Hari Sekhon
3+ # Date: 2020-02-04 21:40:04 +0000 (Tue, 04 Feb 2020)
4+ #
5+ # vim:ts=2:sts=2:sw=2:et
6+ #
7+ # https://github.com/HariSekhon/DevOps-Python-tools
8+ #
9+ # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
10+ #
11+ # https://www.linkedin.com/in/HariSekhon
12+ #
13+
14+ ---
15+ name : Python 3.9
16+
17+ on :
18+ push :
19+ branches :
20+ - master
21+ workflow_dispatch :
22+ inputs :
23+ debug :
24+ type : boolean
25+ required : false
26+ default : false
27+ schedule :
28+ - cron : ' 0 7 * * *'
29+
30+ concurrency :
31+ group : ${{ github.ref }}-${{ github.workflow }}
32+ cancel-in-progress : true
33+
34+ jobs :
35+ build :
36+ if : github.event.repository.fork == false
37+ name : Python 3.9
38+ uses : HariSekhon/GitHub-Actions/.github/workflows/python.yaml@master
39+ with :
40+ version : 3.9
41+ debug : ${{ github.event.inputs.debug || false }}
You can’t perform that action at this time.
0 commit comments