diff --git a/.github/workflows/jekyll-build.yml b/.github/workflows/jekyll-build.yml new file mode 100644 index 0000000..1bba042 --- /dev/null +++ b/.github/workflows/jekyll-build.yml @@ -0,0 +1,19 @@ +name: Jekyll Build + +on: + push: + branches: [main] + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.1' + - name: Install dependencies + run: bundle install --jobs 4 --retry 3 + - name: Build site + run: bundle exec jekyll build