Sha256: fa98c4e4d3336bc7c432e6a1c9d25c77a1797a030146b27791cce1cfacf25550

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

name: rake

on:
  push:
    branches: [ master, main ]
    tags: [ v* ]
  pull_request:

jobs:
  prepare-ieee:
    uses: ./.github/workflows/prepare.yml
    secrets:
      pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}

  rake:
    name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
    concurrency:
      group: '${{ github.workflow }}-${{ matrix.os }}-${{ matrix.ruby }}-${{ github.head_ref || github.ref_name }}'
      cancel-in-progress: true
    needs: [ prepare-ieee ]
    runs-on: ${{ matrix.os }}
    continue-on-error: ${{ matrix.experimental }}
    strategy:
      fail-fast: false
      max-parallel: 5
      matrix:
        ruby: [ '3.1', '3.0', '2.7' ]
        os: [ ubuntu-latest, windows-latest, macos-latest ]
        experimental: [ false ]
    steps:
      - uses: actions/checkout@v3
        with:
          submodules: true

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

      - uses: actions/download-artifact@v3
        with:
          name: ieee-test-input
          path: ieee

      - run: ls -R ieee

      - run: bundle exec rake

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mnconvert-1.28.0 .github/workflows/rake.yml
mnconvert-1.27.0 .github/workflows/rake.yml
mnconvert-1.26.0 .github/workflows/rake.yml
mnconvert-1.25.0 .github/workflows/rake.yml