From b5387532dfc8b4b96aa477853a37473dd0047a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Rudowicz?= Date: Wed, 28 Aug 2024 18:54:28 +0200 Subject: [PATCH] Example workflow --- .forgejo/workflows/example.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .forgejo/workflows/example.yaml diff --git a/.forgejo/workflows/example.yaml b/.forgejo/workflows/example.yaml new file mode 100644 index 0000000..bfc0bc2 --- /dev/null +++ b/.forgejo/workflows/example.yaml @@ -0,0 +1,11 @@ +on: + push: + branches: + - main +jobs: + test: + runs-on: docker + container: + image: alpine:3.19 + steps: + - run: cat /etc/os-release