auth-api/.gitea/workflows/test.yml
lilleman 152555b6aa
Some checks are pending
Gitea Actions Demo / Alpine (push) Waiting to run
Gitea Actions Demo / Alpine-With-CO (push) Waiting to run
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
Testing different images
2023-12-17 01:13:12 +01:00

29 lines
624 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Debug
run: echo "wat?"
# - name: Docker test
# run: docker run hello-world
Alpine:
runs-on: alpine-3.19.0
steps:
- name: Debug
run: echo "wat?"
Alpine-With-CO:
runs-on: alpine-3.19.0
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Debug
run: echo "wat?"