We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2efc99f commit 5dd8971Copy full SHA for 5dd8971
1 file changed
.github/workflows/main.yml .github/workflows/ci.yml.github/workflows/main.yml renamed to .github/workflows/ci.yml
@@ -1,27 +1,24 @@
1
-name: Ruby
+name: ci
2
3
on:
4
push:
5
- branches:
6
- -
7
-
+ branches: [main]
+ tags: ['*']
8
pull_request:
9
10
jobs:
11
- build:
+ test:
12
runs-on: ubuntu-latest
13
- name: Ruby ${{ matrix.ruby }}
+ name: ruby ${{ matrix.ruby }}
14
strategy:
15
matrix:
16
ruby:
17
- '3.3.4'
18
19
steps:
20
- uses: actions/checkout@v4
21
- - name: Set up Ruby
22
- uses: ruby/setup-ruby@v1
+ - uses: ruby/setup-ruby@v1
23
with:
24
ruby-version: ${{ matrix.ruby }}
25
bundler-cache: true
26
- - name: Run the default task
27
- run: bundle exec rake
+ - run: bundle exec rake
0 commit comments