We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9d5a7 commit 00ad357Copy full SHA for 00ad357
.github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: 'Continuous Integration'
+name: 'CI'
2
on:
3
push:
4
branches-ignore:
@@ -18,23 +18,20 @@ on:
18
- '**'
19
20
jobs:
21
- ci:
22
- runs-on: ${{ matrix.os }}
+ build:
+ runs-on: ubuntu-latest
23
strategy:
24
matrix:
25
- os: [ubuntu-latest, macos-latest]
26
-
+ ruby: [2.5, 2.6, 2.7, 3]
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v2
30
with:
31
fetch-depth: 0 # for posts's lastmod
32
33
- name: Setup Ruby
34
uses: ruby/setup-ruby@v1
35
36
- ruby-version: 2.7
+ ruby-version: ${{ matrix.ruby }}
37
bundler-cache: true
38
39
- name: Test Site
40
run: bash tools/deploy.sh --dry-run
0 commit comments