Skip to content

Improve README.

Improve README. #2

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

Check failure on line 16 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
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.4/pandoc-3.1.4-1-amd64.deb
sudo dpkg -i pandoc-2.1.4-1-amd64.deb
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: |
bundle exec rake