Skip to content

Commit 83b8b05

Browse files
committed
added python3.11.yaml
1 parent 7408f3c commit 83b8b05

1 file changed

Lines changed: 62 additions & 0 deletions

File tree

.github/workflows/python3.11.yaml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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.11
16+
17+
on:
18+
push:
19+
branches:
20+
- master
21+
- main
22+
paths:
23+
- '**/*.py'
24+
- pylib
25+
- requirements.txt
26+
- .github/workflows/python3.11.yaml
27+
pull_request:
28+
branches:
29+
- master
30+
- main
31+
paths:
32+
- '**/*.py'
33+
- pylib
34+
- requirements.txt
35+
- .github/workflows/python3.11.yaml
36+
workflow_dispatch:
37+
inputs:
38+
debug:
39+
type: boolean
40+
required: false
41+
default: false
42+
schedule:
43+
- cron: '0 7 * * *'
44+
45+
permissions:
46+
contents: read
47+
48+
concurrency:
49+
group: ${{ github.ref }}-${{ github.workflow }}
50+
cancel-in-progress: true
51+
52+
jobs:
53+
build:
54+
# github.event.repository context not available in scheduled workflows
55+
#if: github.event.repository.fork == false
56+
if: github.repository_owner == 'HariSekhon'
57+
name: Python 3.11
58+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
59+
with:
60+
python-version: "3.11"
61+
caches: apt pip
62+
debug: ${{ github.event.inputs.debug }}

0 commit comments

Comments
 (0)