From 7a2dfe0090843770288532c072b7264fe30fc08b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 15 Jun 2021 23:48:37 +0300 Subject: workflows/test -> workflows/jekyll --- .github/workflows/jekyll.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/jekyll.yml (limited to '.github/workflows/jekyll.yml') diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 0000000..3915aee --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,33 @@ +name: Test + +on: + push: + pull_request: + schedule: + # Weekly, at 5:45 AM on Thursday (somewhat randomly chosen). + - cron: '45 5 * * 4' + workflow_dispatch: + +jobs: + bundler: + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: [2.5, 2.6, 2.7] + version: [Gemfile, latest] + include: + - {version: Gemfile, gemfile: Gemfile} + - {version: latest, gemfile: .ci/Gemfile} + name: 'Build / ${{ matrix.ruby-version }} / ${{ matrix.version }}' + env: + BUNDLE_GEMFILE: '${{ matrix.gemfile }}' + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '${{ matrix.ruby-version }}' + bundler-cache: true + - name: jekyll build + run: bundle exec jekyll build -- cgit v1.2.3