diff options
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f0aa09a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,48 @@ +name: Test + +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 + + 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 |