All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m2s
19 lines
800 B
YAML
19 lines
800 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
jobs :
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "🎊The Job was triggered by ${{ github.event_name }}!"
|
|
- run: echo "🐧This job is now running on a ${{ runner.os }} server."
|
|
- run: echo "🔎 The name of the branch is ${{ github.ref }} and the repo is ${{ github.repository }}."
|
|
- name: Check out the repository code
|
|
uses: actions/checkout@v3
|
|
- run: echo "The ${{ github.repository has be cloned }}"
|
|
- run: echo "💻The workflow is now ready to test the code."
|
|
- name: List the files in the repo
|
|
run: |
|
|
ls ${{ github.workspace }}
|
|
- run: echo "🍏 This job's status is ${{ job.status }}"
|