Skip to content

Commit 11031a5

Browse files
Configure Ruby Spec to run on GH Actions
1 parent 9000d6e commit 11031a5

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

.github/workflows/spec.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Spec
2+
on:
3+
- push
4+
- pull_request_target
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout 🛎️
11+
uses: actions/checkout@master
12+
with:
13+
submodules: recursive
14+
15+
- name: Spec
16+
run: ./spec/mspec/bin/mspec -t ./exe/yarv

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "spec/ruby"]
2+
path = spec/ruby
3+
url = https://github.com/ruby/spec
4+
[submodule "spec/mspec"]
5+
path = spec/mspec
6+
url = https://github.com/ruby/mspec

spec/mspec

Submodule mspec added at 215497e

spec/ruby

Submodule ruby added at 3affe1e

0 commit comments

Comments
 (0)