Sha256: 6a6e36d133165a6f291b7220ac97e693b657de2a1e63a935988464f329d09704

Contents?: true

Size: 590 Bytes

Versions: 5

Compression:

Stored size: 590 Bytes

Contents

name: Test

on: 
  push:
    branches:
      - main
  pull_request:
  workflow_dispatch:

jobs:
  test:
    name: Test
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: ['3.1', '3.2', '3.3']

    steps:
      - uses: actions/checkout@v4
        with:
          show-progress: false

      - uses: actions/setup-node@v4
        with:
          node-version-file: '.nvmrc'
          cache: 'npm'

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

      - name: Run tests
        run: bundle exec rake

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
govuk_tech_docs-4.2.0 .github/workflows/test.yaml
govuk_tech_docs-4.1.2 .github/workflows/test.yaml
govuk_tech_docs-4.1.1 .github/workflows/test.yaml
govuk_tech_docs-4.1.0 .github/workflows/test.yaml
govuk_tech_docs-4.0.0 .github/workflows/test.yaml