Sha256: 27947da957739d9cf11154c37f8985995fa7c358fd30ca97329091afa2d710d6

Contents?: true

Size: 808 Bytes

Versions: 6

Compression:

Stored size: 808 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: Check if `rake annotate` has been executed
      run: |
        bundle exec rake annotate confirm_annotation

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rbs-2.8.0.pre.1 .github/workflows/comments.yml
rbs-2.7.0 .github/workflows/comments.yml
rbs-2.7.0.pre.3 .github/workflows/comments.yml
rbs-2.7.0.pre.2 .github/workflows/comments.yml
rbs-2.7.0.pre.1 .github/workflows/comments.yml
rbs-2.6.0 .github/workflows/comments.yml