This commit is contained in:
parent
d6c8ca66d0
commit
9a990d2805
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/checkout-test.yaml
Normal file
21
.forgejo/workflows/checkout-test.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
name: Checkout test
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
test:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Verify checkout
|
||||
shell: bash
|
||||
run: |
|
||||
set -e
|
||||
echo "PWD: $(pwd)"
|
||||
echo "Files:"
|
||||
ls -la
|
||||
echo "Commit:"
|
||||
git rev-parse HEAD
|
||||
Loading…
Reference in a new issue