24 lines
468 B
YAML
24 lines
468 B
YAML
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 |