diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 22:53:12 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-03 22:53:12 +0300 |
commit | a52aa49461d30b0071442eb023db197e0ad31fde (patch) | |
tree | f51d7b6a8cc8e8e4ed865f88bc09ba51a4500245 /.github/workflows/jekyll.yml | |
parent | manual: tweak output a bit (diff) | |
download | wireguard-config-a52aa49461d30b0071442eb023db197e0ad31fde.tar.gz wireguard-config-a52aa49461d30b0071442eb023db197e0ad31fde.zip |
add GitHub Actions workflow
Copied it from my other Jekyll projects.
Diffstat (limited to '.github/workflows/jekyll.yml')
-rw-r--r-- | .github/workflows/jekyll.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 0000000..9c06448 --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,34 @@ +name: Jekyll + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: [2.5, 2.6, 2.7] + 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 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '${{ matrix.ruby-version }}' + bundler-cache: true + - name: jekyll build + run: bundle exec jekyll build --drafts + - 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/ |