Sha256: 9fc9933dca947203f96757b90f434753d3c3bd1e4b070105f66c8b54617e34ba
Contents?: true
Size: 780 Bytes
Versions: 1
Compression:
Stored size: 780 Bytes
Contents
name: Tests on: pull_request: push: branches: - '**' tags-ignore: - 'v*' jobs: test: # Skip running tests for local pull requests (use push event instead), run only for foreign ones if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login name: 'Ruby ${{ matrix.ruby }}' runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - '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: Run RSpec run: bundle exec rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yabeda-http_requests-0.2.1 | .github/workflows/test.yml |