We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 021e192 + 3963ee5 commit 6dfff5dCopy full SHA for 6dfff5d
.github/main.workflow
@@ -0,0 +1,8 @@
1
+workflow "test" {
2
+ resolves = ["CI Test Runner"]
3
+ on = "push"
4
+}
5
+
6
+action "CI Test Runner" {
7
+ uses = "./.github/test_runner"
8
.github/test_runner/Dockerfile
@@ -0,0 +1,14 @@
+FROM ruby:2.6.2
+LABEL "com.github.actions.name"="CI Test Runner"
+LABEL "com.github.actions.description"="Run the full test suite"
+LABEL "com.github.actions.icon"="gear"
+LABEL "com.github.actions.color"="purple"
+ENV LC_ALL C.UTF-8
9
+ENV LANG en_US.UTF-8
10
+ENV LANGUAGE en_US.UTF-8
11
12
+COPY entrypoint.sh /
13
14
+ENTRYPOINT ["/entrypoint.sh"]
.github/test_runner/entrypoint.sh
@@ -0,0 +1,3 @@
+#!/bin/sh -l
+script/cibuild
0 commit comments