Sha256: de8573248941a1b20708c4dca24c70ec2997fe0b6e459260115ad7c572c206e9
Contents?: true
Size: 577 Bytes
Versions: 2
Compression:
Stored size: 577 Bytes
Contents
name: build on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.5', '2.6', '2.7' ] steps: - uses: actions/checkout@v2 - name: Install BLAS and LAPACK run: sudo apt-get install -y libopenblas-dev liblapacke-dev - name: Set up Ruby ${{ matrix.ruby }} uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rumale-0.22.1 | .github/workflows/build.yml |
rumale-0.22.0 | .github/workflows/build.yml |