We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ce408 commit 6dfaf6cCopy full SHA for 6dfaf6c
.github/workflows/test_selfhosted_runner.yml
@@ -0,0 +1,27 @@
1
+name: Test Github action on self hosted RPI runnes
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ name: Dummy test - self hosted GHR
12
+ runs-on: self-hosted
13
+ steps:
14
+ - name: Check out repo
15
+ uses: actions/checkout@v2
16
+ - name: Test message 1
17
+ run: echo "This is test message"
18
+ - name: Test message 2
19
+ run: echo "This is test message2"
20
+ - name: List directory
21
+ run: ls
22
+ - name: Create copy of README
23
+ run: cp README.md README2.md
24
+ - name: Read README2
25
+ run: cat README2.md
26
+ - name: Delete README2
27
+ run: rm README2.md
0 commit comments