Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit 38c8137

Browse files
committed
add action to test running locally
1 parent 2c4619d commit 38c8137

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/run_local.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "run local"
2+
on:
3+
issues:
4+
types: [closed]
5+
pull_request:
6+
types: [closed]
7+
8+
jobs:
9+
# unit tests
10+
run-local:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: ./
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
# unit tests
11-
units:
11+
unit-tests:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)