Skip to content

Test Workflow

Test Workflow #2

Workflow file for this run

# .github/workflows/test.yaml
name: Test GitHub Actions
on:
workflow_dispatch:
push:
branches: [ "test" ]
jobs:
test:
name: Build
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Machine Information
run: |
lscpu; free -h; df -h .
- name: System Information
run: |
date; uname -a; uptime; cat /etc/os-release; ls -C /boot || :
- name: Context Information
run: |
tty || :; id; printf %s\\n "$SHELL"; printf %s\\n "$PATH"; pwd
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: |
ls -la