checkin #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: checkin | ||
on: | ||
schedule: | ||
- cron: '21 0 * * *' | ||
workflow_dispatch: | ||
jobs: | ||
2DFan_CheckIn: | ||
Check failure on line 9 in .github/workflows/checkin.yml GitHub Actions / checkinInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.10.10 | ||
- name: Prepare module | ||
run: | | ||
pip3 install requests | ||
- name: Run Checkin | ||
env: | ||
SESSIONS: ${{ secrets.SESSIONS }} | ||
run: | | ||
python main.py |