diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-29 23:15:35 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-29 23:15:35 +0300 |
commit | f18c0badad2cafe0eab393feb5f7fd2e01d4defe (patch) | |
tree | 4158867a7e1ceac3486e14b3835e19ec6d1349b1 /.github/workflows/jekyll.yml | |
parent | bye-bye, Travis (diff) | |
download | sorting-algorithms-f18c0badad2cafe0eab393feb5f7fd2e01d4defe.tar.gz sorting-algorithms-f18c0badad2cafe0eab393feb5f7fd2e01d4defe.zip |
add GitHub workflow
Diffstat (limited to '.github/workflows/jekyll.yml')
-rw-r--r-- | .github/workflows/jekyll.yml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 0000000..4ca2677 --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,68 @@ +name: Jekyll + +on: + push: + pull_request: + schedule: + # Weekly, at 4:30 AM on Thursday (somewhat randomly chosen). + - cron: '30 4 * * 4' + workflow_dispatch: + +jobs: + bundler: + runs-on: ubuntu-18.04 + strategy: + matrix: + ruby-version: [2.5, 2.6] + name: 'Bundler / ${{ 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: 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 & + sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/ |