Sha256: 757a08ba726baab8df7988bc32f1581e20afcebafbb0d2e44e5dbadf68883312
Contents?: true
Size: 752 Bytes
Versions: 2
Compression:
Stored size: 752 Bytes
Contents
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, # change this to (see https://github.com/ruby/setup-ruby#versioning): # uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 - name: Install dependencies run: bundle install - name: RSpec tests run: rspec spec lint: runs-on: ubuntu-latest steps: - name: Rubocop Linter Action uses: andrewmcodes/rubocop-linter-action@v3.2.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bouncie-0.6.0 | .github/workflows/ci.yml |
bouncie-0.4.0 | .github/workflows/ci.yml |