Skip to content

zodgame

zodgame #326

Workflow file for this run

name: zodgame
on:
schedule:
- cron: "0 1 * * *"
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Install requirements
run: |
pip install -r ./zodgame/requirements.txt
- name: Run
run: |
python ./zodgame/zodgame.py "${{secrets.ZODGAME_COOKIE}}"
python ./zodgame/zodgame.py "${{secrets.ZOD_COOKIE2}}"
- uses: gautamkrishnar/keepalive-workflow@master