Skip to content

Python application

Python application #75

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "master" ]
paths:
- '.github/workflows/**'
schedule:
- cron: '20 0,1 * * *'
# allow manual trigger
workflow_dispatch:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
env:
TZ: Asia/Shanghai
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
# runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# pip install pycryptodome requests beautifulsoup4
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: start run
env:
PUSHPLUS_KEY: ${{ secrets.PUSHPLUS_KEY }}
PRIVATE_AES_KEY: ${{ secrets.PRIVATE_AES_KEY }}
run: |
python main.py