Sha256: 3ccf6d865b18e31201e82c667fc6c57bfb68a56781ae96dc944473f7ba1846cb
Contents?: true
Size: 521 Bytes
Versions: 1
Compression:
Stored size: 521 Bytes
Contents
name: Ruby CI on: workflow_call: workflow_dispatch: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: strategy: fail-fast: false matrix: ruby: ["2.6", "2.7", "3.0", "3.1"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Ruby ${{matrix.ruby}} uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run tests run: | bundle exec rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
maremma-4.9.9 | .github/workflows/ci.yml |