Skip to content

build

build #666

Workflow file for this run

name: build
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install -r requirements.txt
- run: make build
- name: Commit and push changes
uses: EndBug/add-and-commit@v9
with:
author_name: Leslie Leung
author_email: lesily9@gmail.com
message: sync with upstream
push: true