Sha256: 5bbb935bb19bf9786749d72c1f19d0f72c3e66c63a4c69434fe3a1b67e41a11e
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
name: test on: push: branches: - main pull_request: types: - opened - synchronize - reopened schedule: - cron: "0 10 * * 5" # JST 19:00 (Fri) jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - "2.3" - "2.4" - "2.5" - "2.6" - "2.7" - "3.0" - "3.1" - "3.2" steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: bundle update run: | set -xe bundle config path vendor/bundle bundle update --jobs $(nproc) --retry 3 - run: bundle exec rspec - run: bundle exec yard --fail-on-warning rbs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ruby bundler-cache: true - name: bundle update run: | set -xe bundle config path vendor/bundle bundle update --jobs $(nproc) --retry 3 - run: bundle exec rbs collection install - run: bundle exec rbs validate --silent - run: bundle exec steep check
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simple_twitter-2.2.1 | .github/workflows/test.yml |
simple_twitter-2.2.0 | .github/workflows/test.yml |