Files
ubuntu20/.gitea/workflows/default.yaml
T
brb a50164cb1f
pipeline / Test (push) Successful in 4s
added test workflow
2023-07-25 21:10:07 +02:00

16 lines
320 B
YAML

name: pipeline
run-name: ${{ gitea.actor }} is running script
runs-on: ubuntu-latest
on:
push:
branches-ignore:
- "release"
image: ubuntu-latest
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Show Name
run: echo "${{ gitea.actor }}"