Sha256: 22f9d63ca6cf492f496820c2bdbbbfd3be1d863bb6275148b236e1b23ba6c1c3

Contents?: true

Size: 769 Bytes

Versions: 3

Compression:

Stored size: 769 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@v2
    - name: Install dependencies
      run: |
        apt-get update
        apt-get install -y libdb-dev
    - 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

3 entries across 3 versions & 1 rubygems

Version Path
rbs-2.2.2 .github/workflows/comments.yml
rbs-2.2.1 .github/workflows/comments.yml
rbs-2.2.0 .github/workflows/comments.yml