Some checks failed
Documentation / build-and-publish (push) Waiting to run
Test / test (push) Waiting to run
Checkout test / test (push) Successful in 5s
CI with Native Libraries / test-native (push) Has been cancelled
CI with Native Libraries / build-release (push) Has been cancelled
21 lines
376 B
YAML
21 lines
376 B
YAML
---
|
|
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
|