Sha256: 12fd9fbd8e3aea2c796fe467923efd3413eb4cc71dc05fc298def3e354571bab
Contents?: true
Size: 1.09 KB
Versions: 10
Compression:
Stored size: 1.09 KB
Contents
# Auto-generated by Cimas: Do not edit it manually! # See https://github.com/metanorma/cimas name: ubuntu on: push: branches: [ master ] pull_request: paths-ignore: - .github/workflows/macos.yml - .github/workflows/windows.yml jobs: test-linux: name: Test on Ruby ${{ matrix.ruby }} Ubuntu runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: ruby: [ '2.6', '2.5', '2.4' ] experimental: [false] include: - ruby: '2.7' experimental: true steps: - uses: actions/checkout@master - name: Use Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} architecture: 'x64' - name: Update gems run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Install PlantUML run: | sudo bash -c "curl -L https://github.com/riboseinc/plantuml-install/raw/master/ubuntu.sh | bash" - name: Run specs run: | bundle exec rake
Version data entries
10 entries across 10 versions & 4 rubygems