Skip to content

Commit 761273e

Browse files
ci(github): create commands.yml
1 parent bcbf7e6 commit 761273e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/commands.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: commands
2+
on: push
3+
4+
jobs:
5+
commands:
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest, macos-latest, windows-latest]
10+
11+
steps:
12+
- name: cd
13+
shell: bash
14+
run: cd
15+
16+
- name: echo
17+
shell: bash
18+
run: echo hello
19+
20+
- name: find
21+
shell: bash
22+
run: find
23+
24+
- name: ls
25+
shell: bash
26+
run: ls
27+
28+
- name: zip
29+
shell: bash
30+
run: zip --help

0 commit comments

Comments
 (0)