Sha256: 815896ee96dcf802fca806e5f7d04f0cd6a4b139a0383d4d84cfcbb171db3906

Contents?: true

Size: 774 Bytes

Versions: 6

Compression:

Stored size: 774 Bytes

Contents

name: RBS Comments

on:
  push:
    branches:
      - master
  pull_request: {}

jobs:
  test:
    runs-on: "ubuntu-latest"
    container:
      image: rubylang/ruby:3.1-focal
    steps:
    - uses: actions/checkout@v3
    - name: Install dependencies
      run: |
        apt-get update
        apt-get install -y libdb-dev curl
    - name: Update rubygems & bundler
      run: |
        ruby -v
        gem update --system
    - name: bundle config set with
      run: |
        echo "NO_MINITEST=true" >> $GITHUB_ENV
        bundle config set --local without 'minitest'
      if: "contains(matrix.container_tag, 'master-nightly')"
    - name: bin/setup
      run: |
        bin/setup
    - name: Run test
      run: |
        bundle exec rake annotate confirm_annotation

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rbs-2.5.1 .github/workflows/comments.yml
rbs-2.5.0 .github/workflows/comments.yml
rbs-2.4.0 .github/workflows/comments.yml
rbs-2.3.2 .github/workflows/comments.yml
rbs-2.3.1 .github/workflows/comments.yml
rbs-2.3.0 .github/workflows/comments.yml