Skip to content

Commit d5a7ec5

Browse files
committed
Create build.yml
1 parent bb92bd3 commit d5a7ec5

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Ruby
2+
3+
on:
4+
push:
5+
branches: [ master cidev ]
6+
pull_request:
7+
branches: [ master cidev ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Set up Ruby 2.5
17+
uses: actions/setup-ruby@v1
18+
with:
19+
ruby-version: 2.5.x
20+
- name: Build and test with Rake
21+
run: |
22+
gem install bundler
23+
bundle install --jobs 4 --retry 3 --deployment --without "development test"
24+
- name: Archive Release
25+
uses: thedoctor0/zip-release@master
26+
with:
27+
filename: 'release.zip'
28+
exclusions: '*.git*'

0 commit comments

Comments
 (0)