18 lines
298 B
YAML
18 lines
298 B
YAML
|
|
name: Smoke — Checkout
|
||
|
|
|
||
|
|
on:
|
||
|
|
workflow_dispatch:
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
checkout:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
steps:
|
||
|
|
- name: Checkout
|
||
|
|
uses: actions/checkout@v4
|
||
|
|
|
||
|
|
- name: Verify working directory
|
||
|
|
run: |
|
||
|
|
echo "Repo: $(pwd)"
|
||
|
|
ls -la
|
||
|
|
git log --oneline -5
|