15 lines
262 B
YAML
15 lines
262 B
YAML
|
|
name: CI Test
|
||
|
|
on: [push]
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
test:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
steps:
|
||
|
|
- name: Checkout
|
||
|
|
uses: actions/checkout@v4
|
||
|
|
- name: Info
|
||
|
|
run: |
|
||
|
|
echo "runner ok: $(hostname)"
|
||
|
|
echo "pwd: $(pwd)"
|
||
|
|
cat README.md
|