Skip to content

Commit

Permalink
Merge branch 'master' of github.com:htdebeer/paru
Browse files Browse the repository at this point in the history
  • Loading branch information
htdebeer committed Sep 15, 2024
2 parents 84f12de + c4cee3a commit 128533e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/run_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Ruby

on:
push:
branches:
- master
pull_request:

jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: [3.3.5]
pandoc: [3.4]

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Set up Pandoc
uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: ${{ matrix.pandoc }}

- name: Run tests
run: bundle exec rake test

0 comments on commit 128533e

Please sign in to comment.