Add .gitea/workflows/test-runner.yaml
All checks were successful
Test Runner / test (push) Successful in 1m28s
All checks were successful
Test Runner / test (push) Successful in 1m28s
This commit is contained in:
24
.gitea/workflows/test-runner.yaml
Normal file
24
.gitea/workflows/test-runner.yaml
Normal file
@ -0,0 +1,24 @@
|
||||
name: Test Runner
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Print Gitea context
|
||||
run: |
|
||||
echo "Event: ${{ gitea.event_name }}"
|
||||
echo "Repository: ${{ gitea.repository }}"
|
||||
echo "Actor: ${{ gitea.actor }}"
|
||||
|
||||
- name: List files
|
||||
run: ls -la
|
||||
|
||||
- name: Print working directory
|
||||
run: pwd
|
Reference in New Issue
Block a user