Skip to content

Commit b4202fc

Browse files
test
1 parent 10a1a70 commit b4202fc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: GitHub Actions Demo
2+
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
3+
on: [push]
4+
jobs:
5+
build:
6+
runs-on: silabs-internal
7+
steps:
8+
- uses: actions/checkout@v1
9+
- name: Run a one-line script
10+
run: docker run zyclonite/sysbench cpu run
11+
- name: Run a multi-line scripts
12+
run: |
13+
ls
14+
pwd
15+
hostname
16+
cat /etc/os-release
17+
18+

0 commit comments

Comments
 (0)