Skip to content

Commit

Permalink
Merge pull request #419 from ashawley/gh-action
Browse files Browse the repository at this point in the history
Add build GitHub action
  • Loading branch information
ashawley committed Mar 16, 2020
2 parents 4e430c3 + ae260b5 commit 9c2508d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build with Jekyll
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec jekyll build

0 comments on commit 9c2508d

Please sign in to comment.