Sha256: bfebd0d6e8809a3df118448f2c9d94e5ffd3aca295ab4614f69537fc02620a9a

Contents?: true

Size: 684 Bytes

Versions: 4

Compression:

Stored size: 684 Bytes

Contents

name: coverage

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  coverage:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      - name: Install BLAS and LAPACK
        run: sudo apt-get install -y libopenblas-dev liblapacke-dev
      - name: Set up Ruby 2.7
        uses: actions/setup-ruby@v1
        with:
          ruby-version: '2.7'
      - name: Build and test with Rake
        run: |
          gem install bundler
          bundle install
          bundle exec rake
      - name: Coveralls GitHub Action
        uses: coverallsapp/github-action@v1.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rumale-0.23.0 .github/workflows/coverage.yml
rumale-0.22.5 .github/workflows/coverage.yml
rumale-0.22.4 .github/workflows/coverage.yml
rumale-0.22.3 .github/workflows/coverage.yml