2023-11-13 23:28:42 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
- run: |
|
2023-11-13 23:29:56 +01:00
|
|
|
apt update
|
|
|
|
apt install --yes python3-pip
|
|
|
|
pip3 install -r requirements.txt
|
2023-11-13 23:28:42 +01:00
|
|
|
./build.py
|
|
|
|
|