Sha256: 1507c38eef6e7aa4d981c34001a9f294b89a1b2ca0bf0b2d93a876a5082b996e
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 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: jobs: test-linux: name: Test on Ruby ${{ matrix.ruby }} Ubuntu runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [ '2.6', '2.5', '2.4' ] steps: - uses: actions/checkout@master - name: Use Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} architecture: 'x64' - uses: actions/setup-node@v1 with: node-version: '10.x' - name: Update gems run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Install LaTeXML run: | sudo snap install latexml --edge echo "::add-path::/snap/bin" - name: Install PlantUML run: | curl -L https://raw.githubusercontent.com/metanorma/plantuml-install/master/ubuntu.sh | sudo bash - name: Install puppeteer run: | sudo apt-get update sudo apt-get install -y libgbm1 npm install -g puppeteer@3.0.1 - name: Run specs run: | bundle exec rake
Version data entries
4 entries across 4 versions & 1 rubygems