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 +++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 33 --------------------------------- README.md | 2 +- 3 files changed, 34 insertions(+), 34 deletions(-) create mode 100644 .github/workflows/jekyll.yml delete mode 100644 .github/workflows/test.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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 3915aee..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,33 +0,0 @@ -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 diff --git a/README.md b/README.md index 16e4da0..5a5d7f7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Egor Tensin =========== -[![Test](https://github.com/egor-tensin/egor-tensin.github.io/actions/workflows/test.yml/badge.svg)](https://github.com/egor-tensin/egor-tensin.github.io/actions/workflows/test.yml) +[![Jekyll](https://github.com/egor-tensin/egor-tensin.github.io/actions/workflows/jekyll.yml/badge.svg)](https://github.com/egor-tensin/egor-tensin.github.io/actions/workflows/jekyll.yml) This is my website hosted on [GitHub Pages] at https://egor-tensin.github.io/. -- cgit v1.2.3