Skip to content

Commit 7717c29

Browse files
authored
Create test.yaml
1 parent 5433ca3 commit 7717c29

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/test.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# .github/workflows/test.yaml
2+
3+
name: Test GitHub Actions
4+
5+
on:
6+
workflow_dispatch:
7+
push:
8+
branches: [ "test" ]
9+
10+
jobs:
11+
test:
12+
name: Build
13+
runs-on: ubuntu-latest
14+
15+
defaults:
16+
run:
17+
shell: bash
18+
19+
steps:
20+
21+
- name: Machine Information
22+
run: |
23+
lscpu; free -h; df -h .
24+
- name: System Information
25+
run: |
26+
date; uname -a; uptime; cat /etc/os-release; ls -C /boot || :
27+
- name: Context Information
28+
run: |
29+
tty || :; id; printf %s\\n "$SHELL"; printf %s\\n "$PATH"; pwd

0 commit comments

Comments
 (0)