Skip to content

Commit 16365f7

Browse files
committed
Added GitHub Action
1 parent c0694a9 commit 16365f7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/ci.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
name: Build
8+
runs-on: ubuntu-latest
9+
env:
10+
GITHUB_ACTIONS=false
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
ref: ${{github.head_ref}}
18+
19+
- name: Ruby Setup
20+
uses: ruby/setup-ruby@v1
21+
with:
22+
bundler-cache: true
23+
24+
- name: Environment
25+
run: printenv | sort
26+
27+
- name: Build
28+
run: |
29+
git fetch --depth=1 --tags
30+
bundle exec rake

0 commit comments

Comments
 (0)