Sha256: 5e33ffa3fcc87328d749e44e77dae3aa972397f488443e83ce87957d515a06da

Contents?: true

Size: 576 Bytes

Versions: 1

Compression:

Stored size: 576 Bytes

Contents

name: ci

on: [push, pull_request]

jobs:
  qa:
    timeout-minutes: 5
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1']

    steps:
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Freeze autogenerated files
        run: |
          chmod 0444 Gemfile.lock

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

      - name: Run tests
        run: |
          bin/rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xml_data_extractor-0.7.0 .github/workflows/ci.yml