diff --git a/.forgejo/workflows/ci-test.yml b/.forgejo/workflows/ci-test.yml index 10a1571..2486fea 100644 --- a/.forgejo/workflows/ci-test.yml +++ b/.forgejo/workflows/ci-test.yml @@ -1,7 +1,11 @@ -runs-on: docker -container: - image: alpine:3.20 -steps: - - run: | - grep Alpine /etc/os-release - echo SUCCESS \ No newline at end of file + +on: [push] +jobs: + ls: + runs-on: docker + container: + image: alpine:3.20 + steps: + - run: | + grep Alpine /etc/os-release + echo SUCCESS \ No newline at end of file