From 40aa920f3f134b7ab0a6a051b07ad22e058d9e55 Mon Sep 17 00:00:00 2001 From: Mario Jorge Pereira <554178+mariojp@users.noreply.github.com> Date: Fri, 6 Jun 2025 11:50:04 -0300 Subject: [PATCH] Add CI workflow to build Jekyll site. --- .github/workflows/jekyll.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/jekyll.yml diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 0000000..a18a6a5 --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,19 @@ +name: Jekyll Build + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '2.7' + bundler-cache: true + - name: Install dependencies + run: bundle install --jobs 4 --retry 3 + - name: Build site + run: bundle exec jekyll build