Sha256: a46d7d0f5560ef9dd62aecb3316fbba9243496a70f2490764b4cd54376939681

Contents?: true

Size: 668 Bytes

Versions: 4

Compression:

Stored size: 668 Bytes

Contents

#
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions
#

name: CI

on:
  push:
    branches:
      - '**'

jobs:
  test:
    name: Test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: [2.7, '3.0', 3.1]
      fail-fast: false
    if: "!contains(github.event.head_commit.message, '[ci skip]')"
    steps:
      # https://github.com/actions/checkout
      - uses: actions/checkout@v2

      # https://github.com/ruby/setup-ruby
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true

      - name: Test
        run: bundle exec rake spec

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
capistrano-systemd-ng-0.1.3 .github/workflows/ci.yml
capistrano-systemd-multiservice-0.1.0.beta13 .github/workflows/ci.yml
capistrano-systemd-ng-0.1.2 .github/workflows/ci.yml
capistrano-systemd-ng-0.1.1 .github/workflows/ci.yml