1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-forgejo synced 2024-09-19 18:06:17 +00:00
setup-forgejo/testdata/sanity-checks/.forgejo/workflows/test.yml

29 lines
959 B
YAML
Raw Normal View History

2023-04-01 09:08:06 +00:00
# SPDX-License-Identifier: MIT
2023-03-25 15:57:11 +00:00
name: Setup Forgejo
run-name: ${{ github.actor }} is setting up Forgejo
on: [push]
jobs:
setup-forgejo:
runs-on: self-hosted
steps:
- run: |
echo +++++++++++++++++++++++++++++++++++++++++++
echo about to actions/checkout@v3 for SELF@vTest
2023-03-25 15:57:11 +00:00
- uses: actions/checkout@v3
2023-03-25 21:53:12 +00:00
- id: forgejo
uses: SELF@vTest
2023-03-25 22:07:01 +00:00
with:
image-version: 1.19
- run: |
echo +++++++++++++++++++++++++++++++++++++++++++
echo sanity checking the reset of setup-forgejo
2023-03-25 21:53:12 +00:00
set -ex
2023-03-29 16:46:49 +00:00
test "${{ steps.forgejo.outputs.token }}"
2023-03-30 14:11:04 +00:00
test "FORGEJO_TOKEN" -a "FORGEJO_TOKEN" != F'O'RGEJO_TOKEN
curl ${{ steps.forgejo.outputs.url }}/api/forgejo/v1/version >& version.out
if ! grep --quiet 1.19 version.out ; then
cat version.out
exit 1
fi
test -f ${{ steps.forgejo.outputs.runner-file }}