diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-02 15:02:52 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-02 15:02:52 +0500 |
commit | 6190f68a51bc171c2526c3d94e7a6b6bb6bdb9ee (patch) | |
tree | 79595ea465aa6d47180fc21ca5e21d60d88af1b3 /.github | |
parent | this nokogiri version requires Ruby >= 2.6 (diff) | |
download | sorting-algorithms-6190f68a51bc171c2526c3d94e7a6b6bb6bdb9ee.tar.gz sorting-algorithms-6190f68a51bc171c2526c3d94e7a6b6bb6bdb9ee.zip |
add Makefile for shortcuts
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/jekyll.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 90e3814..4062af8 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -26,9 +26,9 @@ jobs: with: ruby-version: '${{ matrix.ruby-version }}' bundler-cache: true - - name: jekyll build - run: bundle exec jekyll build --drafts + - name: Build + run: make build - name: Check integrity run: | - nohup bundle exec jekyll serve --drafts --baseurl '' & - sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/ + nohup make serve & + sleep 3 && make wget |