Improved DXing ad #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Verification Build | |
# Only run on a push to a commit on branches that are not the main/master or the gh-pages | |
# branch to avoid collision with the actual realease process. | |
on: | |
push: | |
branches-ignore: | |
- master | |
- main | |
- gh-pages | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build-github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Use GitHub Actions' cache to shorten build times and decrease load on servers | |
- uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
# Build the site only to verify correctness before merging | |
- uses: helaili/jekyll-action@master | |
with: | |
build_only: True | |