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