Sha256: be06bbdfedd99605b0f222cbf571ee34ad10cc1304c9246ba56466aa5dc23c51

Contents?: true

Size: 631 Bytes

Versions: 5

Compression:

Stored size: 631 Bytes

Contents

---
name: Test
on: [push, pull_request]

jobs:
  ruby:
    name: Ruby ${{ matrix.ruby }}
    timeout-minutes: 15
    strategy:
      fail-fast: false
      matrix:
        os: ["ubuntu-latest"]
        ruby: ["3.2", "3.1", "3.0", "2.7", "2.6"]
    runs-on: ubuntu-latest
    steps:
      - name: Check out code
        uses: actions/checkout@v3

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

      - name: Install packages
        run: sudo apt-get install -y ragel socat netcat

      - name: Tests
        run: bundle exec rake

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pitchfork-0.11.0 .github/workflows/ci.yml
pitchfork-0.10.0 .github/workflows/ci.yml
pitchfork-0.9.0 .github/workflows/ci.yml
pitchfork-0.8.0 .github/workflows/ci.yml
pitchfork-0.7.0 .github/workflows/ci.yml