monero-site/.github/workflows/ci.yml
erciccione eaf89cc355
workflows: improve performance of github CI
- Bump actions/checkout to v2
- Limit number of posts to be built to 10
2020-07-17 15:14:50 +02:00

23 lines
584 B
YAML

name: gh-actions/site
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: install bundler
run: gem install bundler:1.17.3
- name: bundle install
run: bundle install --jobs 4 --retry 3
- name: build site
run: bundle exec jekyll build --limit-posts 10