-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb0853b
commit 125a3ef
Showing
3 changed files
with
69 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Linter | ||
|
||
on: | ||
pull_request: | ||
branches: ["master", "main"] | ||
|
||
push: | ||
branches: ["master", "main"] | ||
|
||
jobs: | ||
linter: | ||
runs-on: ubuntu-latest | ||
name: linter/ruby | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.6 | ||
bundler-cache: true | ||
|
||
- name: Run linter | ||
run: bundle exec rake code_analysis |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
branches: ["master", "main"] | ||
|
||
push: | ||
branches: ["master", "main"] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
container: ${{ matrix.ruby }} | ||
env: | ||
CC_TEST_REPORTER_ID: cb01575b98b3b80848a3bc292ca6145860871470e5d0669453030d36578f9115 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- ruby: ruby:2.5 | ||
- ruby: ruby:2.6 | ||
- ruby: ruby:2.7 | ||
- ruby: ruby:3.0 | ||
coverage: true | ||
name: test/ruby ${{ matrix.ruby }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Code Climate test-reporter | ||
run: | | ||
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
chmod +x ./cc-test-reporter | ||
./cc-test-reporter before-build | ||
if: matrix.coverage | ||
- name: Bundle install | ||
run: bundle install -j$(nproc) --retry 3 | ||
- name: Run tests | ||
run: bundle exec rspec | ||
timeout-minutes: 1 | ||
- name: Publish code coverage | ||
run: | | ||
export GIT_BRANCH="${GITHUB_REF/refs\/heads\//}" | ||
./cc-test-reporter after-build -r ${{env.CC_TEST_REPORTER_ID}} | ||
if: matrix.coverage |
This file was deleted.
Oops, something went wrong.