Skip to content

Update man page to reflect recent changes in systemd export #17

Update man page to reflect recent changes in systemd export

Update man page to reflect recent changes in systemd export #17

Workflow file for this run

name: ci
on:
- push
- pull_request
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "head"
env:
BUNDLE_WITHOUT: development
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
rubygems: latest # runs 'gem update --system'
- name: Run test
run: bundle exec rake spec