From 81cc1e2b0353229ef8203a4171196660a28b4dd0 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 9 May 2024 15:46:13 +0000 Subject: [PATCH] use demo forgejo workflow --- .forgejo/workflows/demo.yml | 46 ++++++++++++++++++++++++++----------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/.forgejo/workflows/demo.yml b/.forgejo/workflows/demo.yml index 984a732..8ef9a8d 100644 --- a/.forgejo/workflows/demo.yml +++ b/.forgejo/workflows/demo.yml @@ -1,15 +1,35 @@ -name: HTML Check - -on: - push: - - +on: [push] jobs: - build: - runs-on: ubuntu-latest + ls: + runs-on: docker + container: + image: code.forgejo.org/oci/alpine:3.19 steps: - - uses: actions/checkout@v2 # Requried will all actions - - name: Checks HTML5 - uses: Cyb3r-Jak3/html5validator-action@ - with: - root: /index.html + - run: | + echo ${{ github.workspace }} + + + + + + + + + + + +#name: HTML Check +# +#on: +# push: +# +# +#jobs: +# build: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 # Requried will all actions +# - name: Checks HTML5 +# uses: Cyb3r-Jak3/html5validator-action@ +# with: +# root: /index.html