Skip to content

Turkish locale

Turkish locale #19

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: CI
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
strategy:
fail-fast: false
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', 'head']
gemfile: ['jekyll_v3', 'jekyll_v4']
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}