aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-10 02:09:29 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-10 02:09:29 +0300
commit35b5ea87225210d58e22aa85c541522c26b4a49d (patch)
tree35957236b957661cb1abf9775880ae439397b8ca /.github/workflows
parent_config.yml: .travis.yml is no more (diff)
downloadsorting-algorithms-35b5ea87225210d58e22aa85c541522c26b4a49d.tar.gz
sorting-algorithms-35b5ea87225210d58e22aa85c541522c26b4a49d.zip
workflows/jekyll: merge jobs, Bundler caching
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/jekyll.yml49
1 files changed, 9 insertions, 40 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml
index 4ca2677..7096967 100644
--- a/.github/workflows/jekyll.yml
+++ b/.github/workflows/jekyll.yml
@@ -9,12 +9,18 @@ on:
workflow_dispatch:
jobs:
- bundler:
+ build:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby-version: [2.5, 2.6]
- name: 'Bundler / ${{ matrix.ruby-version }}'
+ version: [Gemfile, latest]
+ include:
+ - {version: Gemfile, gemfile: Gemfile}
+ - {version: latest, gemfile: .ci/Gemfile}
+ name: 'Build / ${{ matrix.ruby-version }} / ${{ matrix.version }}'
+ env:
+ BUNDLE_GEMFILE: '${{ matrix.gemfile }}'
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -22,46 +28,9 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: '${{ matrix.ruby-version }}'
- - name: Install dependencies
- run: bundle install --jobs=3 --retry=3
+ bundler-cache: true
- name: jekyll build
run: bundle exec jekyll build --config _config.yml,_config_dev.yml --drafts
-
- github_pages:
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- ruby-version: [2.5, 2.6]
- name: 'github-pages / ${{ matrix.ruby-version }}'
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: '${{ matrix.ruby-version }}'
- - name: Install dependencies
- run: |
- rm -f -- Gemfile Gemfile.lock
- gem install github-pages
- - name: jekyll build
- run: jekyll build
-
- verify:
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- ruby-version: [2.5, 2.6]
- name: 'Verify / ${{ matrix.ruby-version }}'
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: '${{ matrix.ruby-version }}'
- - name: Install dependencies
- run: bundle install --jobs=3 --retry=3
- name: Check integrity
run: |
nohup bundle exec jekyll serve --config _config.yml,_config_dev.yml --drafts &