Skip to content

Commit b7960ba

Browse files
committed
added python3.9.yaml
1 parent 028eca9 commit b7960ba

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/python3.9.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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 }}

0 commit comments

Comments
 (0)