Sha256: a397bcbde58f228d4c7971ef97b889a744ce36df4cb755c56ec09d6aecd240b7

Contents?: true

Size: 486 Bytes

Versions: 3

Compression:

Stored size: 486 Bytes

Contents

name: Test

on: [push, pull_request]

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

    strategy:
      matrix:
        ruby: ['2.7', '3.2']

    steps:
      - uses: actions/checkout@v3

      - uses: actions/setup-node@v3
        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

3 entries across 3 versions & 1 rubygems

Version Path
govuk_tech_docs-3.5.0 .github/workflows/test.yaml
govuk_tech_docs-3.4.5 .github/workflows/test.yaml
govuk_tech_docs-3.4.0 .github/workflows/test.yaml