Skip to content

Commit

Permalink
Merge remote branch 'master' into github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmaroli committed Dec 19, 2024
2 parents 6458144 + 58bc957 commit a0f7e05
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Continuous Integration

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
ruby:
name: "Test Backend (Jekyll ${{ matrix.jekyll_version }}, Ruby ${{ matrix.ruby_version }})"
runs-on: "ubuntu-latest"
env:
JEKYLL_VERSION: ${{ matrix.jekyll_version }}
strategy:
fail-fast: false
matrix:
ruby_version: ["2.7"]
jekyll_version:
- "~> 3.9"
- "~> 4.0"
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: "Set up Ruby ${{ matrix.ruby_version }}"
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true

0 comments on commit a0f7e05

Please sign in to comment.