Update actions/cache and Run Tests on PRs #9
This file contains hidden or 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
| # GitHub Action for Jekyll | |
| # | |
| # Runs jekyll build on pull requests to verify that they build. | |
| name: Test Build | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: ruby:3.2.2-bookworm | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ./.github/actions/jekyll-build |