-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (35 loc) · 1.01 KB
/
python-package-conda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Python
on:
schedule:
- cron: '0 6 * * 1-5'
pull_request:
types:
- closed
workflow_dispatch:
inputs:
logLevel:
description: 'Log'
required: true
default: 'warning'
tags:
description: 'Manuel Started'
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
# Version range or exact version of a Python version to use, using SemVer's version range syntax.
python-version: 3.11 # optional, default is 3.x
# The target architecture (x86, x64) of the Python interpreter.
architecture: x64 # optional
- name: install requests via pip
run: "pip install requests"
- name: install daytime via datetime
run: "pip install datetime"
- name: install packages and run programm
run: python EarlyBird.py ${{ secrets.BOT_TOKEN }} ${{ secrets.CHAT_ID }}