Sha256: ac61ff5ebfb99137967cf5291447aaecbfc06d7830fa565e341f87c3f673d940
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
name: test on: push: branches: - main pull_request: types: - opened - synchronize - reopened jobs: test: runs-on: ubuntu-latest container: ${{ matrix.ruby }} strategy: fail-fast: false matrix: ruby-version: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'head'] include: - ruby-version: 'head' allow_failures: 'true' steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Run test run: | set -xe bundle exec rake continue-on-error: ${{ matrix.allow_failures == 'true' }} - name: Coveralls uses: coverallsapp/github-action@v2 type-check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 3.3 bundler-cache: true - name: Run type check run: bundle exec steep check --with-expectations
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gimei-1.4.0 | .github/workflows/test.yml |
gimei-1.3.2 | .github/workflows/test.yml |
gimei-1.3.1 | .github/workflows/test.yml |
gimei-1.3.0 | .github/workflows/test.yml |