From a5203902d37fb8253887ec169a2e16a1d84fedf7 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 10 Apr 2021 01:53:58 +0300 Subject: workflows/test: merge jobs, Bundler caching --- .github/workflows/test.yml | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0aa09a..2003d15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,13 @@ jobs: strategy: matrix: ruby-version: [2.5, 2.6] - name: 'Bundler / ${{ matrix.ruby-version }}' + 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 @@ -22,27 +28,6 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: '${{ matrix.ruby-version }}' - - name: Install dependencies - run: bundle install --jobs=3 --retry=3 + bundler-cache: true - name: jekyll build run: bundle exec jekyll build - - github_pages: - runs-on: ubuntu-18.04 - strategy: - matrix: - ruby-version: [2.5, 2.6] - name: 'github-pages / ${{ matrix.ruby-version }}' - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '${{ matrix.ruby-version }}' - - name: Install dependencies - run: | - rm -f -- Gemfile Gemfile.lock - gem install github-pages - - name: jekyll build - run: jekyll build -- cgit v1.2.3