8000 Update main.py · S-LimboY/mimotion@b79ba37 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

刷步数

刷步数 #735

Workflow file for this run

name: 刷步数
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: 0 10 * * *
watch:
types: started
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2
- name: 初始化Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: 开始
run: |
pip install requests
pmode='${{ secrets.PMODE }}'
pkey='${{ secrets.PKEY }}'
user='${{ secrets.USER }}'
pwd='${{ secrets.PWD }}'
step='${{ secrets.STEP }}'
python3 main.py ${pmode} ${pkey} ${user} ${pwd} ${step}
0