Skip to content

test

test #34

Workflow file for this run

name: test
on:
schedule:
- cron: '2 0 * * *'
workflow_dispatch:
jobs:
sign_in:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run sign-in script
run: python main.py
env:
COOKIES: ${{ secrets.COOKIES }}
WECHAT_ID: ${{ secrets.WECHAT_ID }}
WECHAT_SECRET: ${{ secrets.WECHAT_SECRET }}
WECHAT_APP_ID: ${{ secrets.WECHAT_APP_ID }}