Guide_3DS/.github/workflows/test.yml
lifehackerhansol 81dffe07df
Add a pull request test script for GitHub Actions
Also remove useless submodule argument from checkout
2023-04-08 14:21:30 -07:00

25 lines
455 B
YAML

name: Test site build
on:
pull_request:
branches: [ master ]
jobs:
doc-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Install dependencies
run: bundle install
- name: Run Jekyll
# Build the site using Jekyll
run: bundle exec jekyll build