Skip to content

Commit

Permalink
Create robot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zqb7 authored Sep 10, 2024
1 parent b7b6398 commit 64fc63d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/robot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Robot
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: run robot
run: |
python robot.py

0 comments on commit 64fc63d

Please sign in to comment.