Skip to content

Commit 775d8ac

Browse files
committed
ci: update workflow
1 parent 4d0e470 commit 775d8ac

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,28 @@
11
name: Ruby
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
6-
- main
7+
- master
8+
- dev
9+
710

811
pull_request:
912

13+
concurrency:
14+
group: ${{ github.sha }}
15+
cancel-in-progress: true
16+
1017
jobs:
1118
build:
1219
runs-on: ubuntu-latest
1320
name: Ruby ${{ matrix.ruby }}
1421
strategy:
1522
matrix:
1623
ruby:
17-
- '3.2.2'
24+
- '2.7.0'
25+
- '3.0.0'
1826

1927
steps:
2028
- uses: actions/checkout@v3
@@ -24,4 +32,4 @@ jobs:
2432
ruby-version: ${{ matrix.ruby }}
2533
bundler-cache: true
2634
- name: Run the default task
27-
run: bundle exec rake
35+
run: bundle exec rake

0 commit comments

Comments
 (0)