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 e3ee8b0 commit 264f858Copy full SHA for 264f858
.github/workflows/main.yml renamed to .github/workflows/test.yml
@@ -1,10 +1,8 @@
1
-name: Ruby
+name: CI
2
3
on:
4
push:
5
- branches:
6
- - master
7
-
+ branches: [ master ]
8
pull_request:
9
10
jobs:
@@ -25,11 +23,12 @@ jobs:
25
23
RACK_VERSION: ${{ matrix.rack_version }}
26
24
27
steps:
28
- - uses: actions/checkout@v4
29
- - name: Set up Ruby
30
- uses: ruby/setup-ruby@v1
31
- with:
32
- ruby-version: ${{ matrix.ruby }}
33
- bundler-cache: true
34
- - name: Run the default task
35
- run: bundle exec rake
+ - name: Checkout code
+ uses: actions/checkout@v4
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: ${{ matrix.ruby }}
+ bundler-cache: true
+ - name: Run tests
+ run: bundle exec rake
0 commit comments