name: Run RuboCop and RSpec on: pull_request: branches: - main jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Run RuboCop run: bin/rubocop --format clang - name: Run RSpec tests run: bin/rspec --format progress - name: Ensure alpha version run: grep alpha lib/runger_release_assistant/version.rb - name: Ensure no git diff run: git diff --exit-code