Skip to content

Commit 89c66b4

Browse files
committed
CI: add github action to test ruby
1 parent eb95463 commit 89c66b4

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Run Specs
2+
on: [ push, pull_request ]
3+
4+
jobs:
5+
unit_specs:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
with: { lfs: true }
10+
- uses: ruby/setup-ruby@v1
11+
- name: test-bosh-stemcell
12+
run: |
13+
bundle install
14+
bundle exec rspec
15+
working-directory: bosh-stemcell/

0 commit comments

Comments
 (0)