2cf5a58adf
`brew intall` on Ubuntu is too slow (about 1 min)
80 lines
1.8 KiB
YAML
80 lines
1.8 KiB
YAML
name: 'Continuous Integration'
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'production'
|
|
tags-ignore:
|
|
- '*'
|
|
paths-ignore:
|
|
- '.github/**'
|
|
- '!.github/workflows/ci.yml'
|
|
- '.travis.yml'
|
|
- '.gitignore'
|
|
- 'docs/**'
|
|
- 'README.md'
|
|
- 'LICENSE'
|
|
pull_request:
|
|
paths:
|
|
- '**'
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
steps:
|
|
- uses: actions/setup-ruby@v1
|
|
with:
|
|
ruby-version: '2.6.x'
|
|
|
|
- name: Install tools (for Ubuntu)
|
|
if: matrix.os == 'ubuntu-latest'
|
|
run: |
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CC86BB64
|
|
sudo add-apt-repository ppa:rmescandon/yq
|
|
sudo apt update
|
|
sudo apt install yq -y
|
|
|
|
- name: Install tools (for macOS)
|
|
if: matrix.os == 'macos-latest'
|
|
run: |
|
|
brew install coreutils
|
|
brew install yq
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Bundle Caching
|
|
id: bundle-cache
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: Bundle config
|
|
run: |
|
|
bundle config path vendor/bundle
|
|
|
|
- name: Bundle Install
|
|
if: steps.bundle-cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
bundle install
|
|
|
|
- name: Bundle Install locally
|
|
if: steps.bundle-cache.outputs.cache-hit == 'true'
|
|
run: |
|
|
bundle install --local
|
|
|
|
- name: Build Site
|
|
run: |
|
|
bash tools/build.sh
|
|
|
|
- name: Test Site
|
|
run: |
|
|
bash tools/test.sh
|