Merge pull request #98 from sue445/dependabot/github_actions/actions/… #77
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: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
schedule: | |
- cron: "0 10 * * 5" # JST 19:00 (Fri) | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- "2.5" | |
- "2.6" | |
- "2.7" | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: bundle update | |
run: | | |
set -xe | |
bundle config path vendor/bundle | |
bundle update --jobs $(nproc) --retry 3 | |
- name: Setup Code Climate Test Reporter | |
uses: aktions/codeclimate-test-reporter@v1 | |
with: | |
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }} | |
command: before-build | |
continue-on-error: true | |
- run: bundle exec rspec | |
- name: Teardown Code Climate Test Reporter | |
uses: aktions/codeclimate-test-reporter@v1 | |
with: | |
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }} | |
command: after-build | |
if: always() | |
continue-on-error: true | |
- run: bundle exec rubocop | |
- name: Slack Notification (not success) | |
uses: lazy-actions/slatify@master | |
if: "! success()" | |
continue-on-error: true | |
with: | |
job_name: ${{ format('*build* ({0})', matrix.ruby) }} | |
type: ${{ job.status }} | |
icon_emoji: ":octocat:" | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
notify: | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Notification (success) | |
uses: lazy-actions/slatify@master | |
if: always() | |
continue-on-error: true | |
with: | |
job_name: '*build*' | |
type: ${{ job.status }} | |
icon_emoji: ":octocat:" | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
token: ${{ secrets.GITHUB_TOKEN }} |