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 4d0e470 commit 775d8acCopy full SHA for 775d8ac
.github/workflows/main.yml
@@ -1,20 +1,28 @@
1
name: Ruby
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches:
- - main
7
+ - master
8
+ - dev
9
+
10
11
pull_request:
12
13
+concurrency:
14
+ group: ${{ github.sha }}
15
+ cancel-in-progress: true
16
17
jobs:
18
build:
19
runs-on: ubuntu-latest
20
name: Ruby ${{ matrix.ruby }}
21
strategy:
22
matrix:
23
ruby:
- - '3.2.2'
24
+ - '2.7.0'
25
+ - '3.0.0'
26
27
steps:
28
- uses: actions/checkout@v3
@@ -24,4 +32,4 @@ jobs:
32
ruby-version: ${{ matrix.ruby }}
33
bundler-cache: true
34
- name: Run the default task
- run: bundle exec rake
35
+ run: bundle exec rake
0 commit comments