alpine test
Some checks failed
Testing running with Alpine instead of Ubuntu / deploy (push) Has been cancelled
Some checks failed
Testing running with Alpine instead of Ubuntu / deploy (push) Has been cancelled
This commit is contained in:
20
.gitea/workflows/alpine_test.yaml
Normal file
20
.gitea/workflows/alpine_test.yaml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: Testing running with Alpine instead of Ubuntu
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: apline:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: setup python
|
||||||
|
uses: actions/setup-python@v3
|
||||||
|
with:
|
||||||
|
python-version: "3.13"
|
||||||
|
- name: install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||||
|
- name: the business
|
||||||
|
run:
|
||||||
|
python alpine_test.py
|
||||||
|
|
Reference in New Issue
Block a user