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.
1 parent a4c7698 commit a23171dCopy full SHA for a23171d
.github/workflows/build_test_zip.yml
.github/workflows/rspec.yml
@@ -0,0 +1,23 @@
1
+name: Build, Test, Zip
2
+
3
+on:
4
+ push:
5
+ branches: [ master, cidev ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Ruby 2.5
16
+ uses: actions/setup-ruby@v1
17
+ with:
18
+ ruby-version: 2.5.x
19
+ - name: Test with Rspec
20
+ run: |
21
+ gem install bundler
22
+ bundle install
23
+ bundle exec rspec --format documentation --color
0 commit comments