Skip to content

Commit 5306778

Browse files
committed
Add missing workflow
1 parent 183c2ad commit 5306778

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Testing on Ubuntu
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
concurrency:
8+
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
9+
cancel-in-progress: true
10+
11+
permissions: read-all
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
ruby:
20+
- 3.2
21+
- 3.3
22+
- 3.4
23+
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: ruby/setup-ruby@v1
27+
with:
28+
ruby-version: ${{ matrix.ruby }}
29+
- name: unit testing
30+
run: |
31+
bundle install --jobs 4 --retry 3
32+
bundle exec rake test

0 commit comments

Comments
 (0)