From 76d908c2da8e5fe611332e8e06c36e1d89ee5f7d Mon Sep 17 00:00:00 2001 From: Camille Frantz Date: Sun, 8 Jun 2025 15:57:59 -0500 Subject: [PATCH] alpine test --- .gitea/workflows/alpine_test.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/alpine_test.yaml diff --git a/.gitea/workflows/alpine_test.yaml b/.gitea/workflows/alpine_test.yaml new file mode 100644 index 0000000..620df45 --- /dev/null +++ b/.gitea/workflows/alpine_test.yaml @@ -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 +