feat: migrate from woodpecker to forgejo actions
Some checks failed
/ test (push) Failing after 16s

This commit is contained in:
s3lph 2023-11-28 23:32:57 +01:00
parent 6159c7c984
commit 5ce8e2fc56
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5
2 changed files with 19 additions and 11 deletions

View file

@ -0,0 +1,19 @@
---
on: push
jobs:
test:
runs-on: docker
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- name: setup environment
run: |
apt update; apt install python3-pip
pip3 install -r requirements.txt
- name: build map
run: |
./generate_map.py \
--cache-directory cache.example \
--rename 'Frankfurt am Main' 'Frankfurt'

View file

@ -1,11 +0,0 @@
---
pipeline:
test:
image: python:3.9
commands:
- pip3 install -r requirements.txt
- >-
./generate_map.py
--cache-directory cache.example
--rename 'Frankfurt am Main' 'Frankfurt'