Update social links #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| name: CI | |
| jobs: | |
| jekyll-build: | |
| name: Build (jekyll gem) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| jekyll-version: [3.9, 4.3] | |
| os: [ubuntu-latest] | |
| ruby-version: ["3.1", "3.2", "3.3", "3.4"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Ruby ${{ matrix.ruby-version }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| bundler-cache: false | |
| - name: Bundle Install (Jekyll ${{ matrix.jekyll-version }}) | |
| run: bundle install | |
| env: | |
| BUNDLE_GEMFILE: fixtures/Gemfile-jekyll-${{ matrix.jekyll-version }} | |
| - name: Init Search | |
| run: bundle exec rake search:init | |
| env: | |
| BUNDLE_GEMFILE: fixtures/Gemfile-jekyll-${{ matrix.jekyll-version }} | |
| - name: Build Site | |
| run: bundle exec jekyll build | |
| env: | |
| BUNDLE_GEMFILE: fixtures/Gemfile-jekyll-${{ matrix.jekyll-version }} | |
| github-pages-build: | |
| name: Build (github-pages gem) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.4" | |
| bundler-cache: false | |
| - name: Bundle Install | |
| run: bundle install | |
| env: | |
| BUNDLE_GEMFILE: fixtures/Gemfile-github-pages | |
| - name: Build Site | |
| run: bundle exec jekyll build | |
| env: | |
| BUNDLE_GEMFILE: fixtures/Gemfile-github-pages | |