File tree Expand file tree Collapse file tree 3 files changed +50
-43
lines changed
Expand file tree Collapse file tree 3 files changed +50
-43
lines changed Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ lint :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v3
14+ - name : Setup Ruby
15+ uses : ruby/setup-ruby@v1
16+ with :
17+ bundler-cache : true
18+
19+ - name : Run linters
20+ uses : wearerequired/lint-action@v2
21+ with :
22+ auto_fix : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
23+ rubocop : true
24+ rubocop_command_prefix : bundle exec
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ test :
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ test_type :
15+ - collections
16+ - topics
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v3
20+ - name : Setup Ruby
21+ uses : ruby/setup-ruby@v1
22+ with :
23+ bundler-cache : true
24+
25+ - name : Build and test with Rake
26+ run : bundle exec rake ${{ matrix.test_type }}
You can’t perform that action at this time.
0 commit comments