Skip to content

Commit c8b5896

Browse files
committed
Use custom actions
1 parent 5e14f55 commit c8b5896

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Diff for: .github/workflows/ci.yaml

+12-2
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,25 @@ jobs:
101101
runs-on: [self-hosted, Windows]
102102

103103
steps:
104+
- name: Git Checkout
105+
uses: actions/checkout@v2
106+
104107
- name: Test
105-
run: sbt ";compile ;test"
108+
uses: liufengyun/actions@v1
109+
with:
110+
command: sbt ";compile ;test"
106111

107112
test_bootstrapped-windows:
108113
runs-on: [self-hosted, Windows]
109114

110115
steps:
116+
- name: Git Checkout
117+
uses: actions/checkout@v2
118+
111119
- name: Test
112-
run: sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test;sjsJUnitTests/test"
120+
uses: liufengyun/actions@v1
121+
with:
122+
command: sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test;sjsJUnitTests/test"
113123

114124
community_build:
115125
runs-on: [self-hosted, Linux]

0 commit comments

Comments
 (0)