Sha256: bf2b5c1f8f67f38a42d0690681af24c3b7a295df430c13e8421fe9c4ae71eba9
Contents?: true
Size: 730 Bytes
Versions: 7
Compression:
Stored size: 730 Bytes
Contents
# Auto-generated !!! Do not edit it manually # use ci-master https://github.com/metanorma/metanorma-build-scripts name: ubuntu on: [push] jobs: test-linux: name: Test on Ruby ${{ matrix.ruby }} Ubuntu runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.6', '2.5', '2.4' ] steps: - uses: actions/checkout@v1 with: submodules: recursive - name: Use Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} architecture: 'x64' - name: Update gems run: | gem install bundler -v "~> 2" bundle install --jobs 4 --retry 3 - name: Run specs run: | bundle exec rake
Version data entries
7 entries across 7 versions & 1 rubygems