11 lines
229 B
YAML
11 lines
229 B
YAML
name: demo
|
|
on: [push]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "hello from ${{ gitea.repository }} on ${{ gitea.ref }}"
|
|
- uses: actions/checkout@v4
|
|
- run: ls -la && git log --oneline -1
|