Skip to content

Update version to 2.1.10. #12

Update version to 2.1.10.

Update version to 2.1.10. #12

Workflow file for this run

###############################################################################
# .github/workflows/tests.yml
###############################################################################
name: "pandoc-ruby · Test Suite"
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
workflow_dispatch:
jobs:
test-ubuntu-latest:
name: "Test: Ubuntu Latest"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
# https://github.com/ruby/setup-ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.1
bundler-cache: true
- name: "Setup Environment"
run: |
sudo apt-get update
sudo apt-get -yqq install libpq-dev build-essential libcurl4-openssl-dev
curl -LO https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-1-amd64.deb
sudo dpkg -i pandoc-3.1.9-1-amd64.deb
gem install bundler
bundle install --jobs 4 --retry 3
- name: "Run tests"
run: |
bundle exec rake