diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-10 01:53:58 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-10 01:53:58 +0300 |
commit | a5203902d37fb8253887ec169a2e16a1d84fedf7 (patch) | |
tree | 45e63b97f38a23df1608dc5ac67f09675b4a76e0 | |
parent | _config.yml: .travis.yml is no more (diff) | |
download | egor-tensin.github.io-a5203902d37fb8253887ec169a2e16a1d84fedf7.tar.gz egor-tensin.github.io-a5203902d37fb8253887ec169a2e16a1d84fedf7.zip |
workflows/test: merge jobs, Bundler caching
Diffstat (limited to '')
-rw-r--r-- | .ci/Gemfile | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 31 | ||||
-rw-r--r-- | _config.yml | 1 |
3 files changed, 11 insertions, 23 deletions
diff --git a/.ci/Gemfile b/.ci/Gemfile new file mode 100644 index 0000000..053c27d --- /dev/null +++ b/.ci/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'github-pages' 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 diff --git a/_config.yml b/_config.yml index 67e328d..0cc4ced 100644 --- a/_config.yml +++ b/_config.yml @@ -8,6 +8,7 @@ exclude: - Gemfile.lock - LICENSE.txt - README.md + - vendor/ # jekyll-github-metadata repository: egor-tensin/egor-tensin.github.io |