Skip to content

Commit c63550c

Browse files
authored
Merge pull request #34 from codetakt/add_github_workflow
Introduce spec workflow
2 parents 30e6046 + 5b5259d commit c63550c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/spec.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
tags:
6+
- v*
7+
pull_request:
8+
jobs:
9+
spec:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: ruby/setup-ruby@v1
14+
with:
15+
ruby-version: 3.4.2
16+
bundler-cache: true
17+
- run: bundle exec rake rspec

0 commit comments

Comments
 (0)