chore: Add CODEOWNERS file (#288) #412
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install sentry-cli | |
run: curl -sL https://sentry.io/get-cli/ | bash | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1.4' | |
# Rspec fails with bundler v 2.6.x, so we pin it to the latest version that works. | |
- run: gem install bundler -v '2.5.20' | |
- run: bundle install | |
- run: sentry-cli info --config-status-json | |
- run: bundle exec rubocop | |
- run: rspec |