2022-03-04 22:58:42 +08:00
|
|
|
name: 'CI'
|
2020-01-22 03:05:06 +08:00
|
|
|
on:
|
|
|
|
push:
|
2020-08-21 01:40:56 +08:00
|
|
|
branches-ignore:
|
2022-02-04 06:46:06 +08:00
|
|
|
- 'release/**'
|
|
|
|
- 'docs'
|
2020-03-02 01:03:58 +08:00
|
|
|
tags-ignore:
|
2022-02-04 06:46:06 +08:00
|
|
|
- '**'
|
2020-01-22 03:05:06 +08:00
|
|
|
paths-ignore:
|
2020-03-02 01:03:58 +08:00
|
|
|
- '.github/**'
|
2020-06-06 03:19:24 +08:00
|
|
|
- '!.github/workflows/ci.yml'
|
2020-03-02 01:03:58 +08:00
|
|
|
- '.travis.yml'
|
|
|
|
- '.gitignore'
|
|
|
|
- 'README.md'
|
|
|
|
- 'LICENSE'
|
2020-01-22 03:05:06 +08:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2020-07-30 02:36:47 +08:00
|
|
|
- '**'
|
2020-01-22 03:05:06 +08:00
|
|
|
|
|
|
|
jobs:
|
2022-03-04 22:58:42 +08:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2022-08-13 17:47:30 -04:00
|
|
|
|
2020-01-22 03:05:06 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-03-04 22:58:42 +08:00
|
|
|
ruby: [2.5, 2.6, 2.7, 3]
|
2022-08-13 17:47:30 -04:00
|
|
|
|
2020-11-23 01:26:29 +08:00
|
|
|
steps:
|
2020-01-22 03:05:06 +08:00
|
|
|
- name: Checkout
|
2022-08-13 17:47:30 -04:00
|
|
|
uses: actions/checkout@v3
|
2020-04-10 03:15:51 +08:00
|
|
|
with:
|
2020-11-23 01:26:29 +08:00
|
|
|
fetch-depth: 0 # for posts's lastmod
|
2022-08-13 17:47:30 -04:00
|
|
|
|
2020-11-23 01:26:29 +08:00
|
|
|
- name: Setup Ruby
|
2021-04-01 04:17:18 +08:00
|
|
|
uses: ruby/setup-ruby@v1
|
2020-11-23 01:26:29 +08:00
|
|
|
with:
|
2022-03-04 22:58:42 +08:00
|
|
|
ruby-version: ${{ matrix.ruby }}
|
2021-04-01 04:17:18 +08:00
|
|
|
bundler-cache: true
|
2022-08-13 17:47:30 -04:00
|
|
|
|
2020-01-22 03:05:06 +08:00
|
|
|
- name: Test Site
|
2022-08-13 17:47:30 -04:00
|
|
|
run: bash tools/test.sh
|