Updated Reek configuration to temporarily exclude core files #1
Workflow file for this run
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: System Update | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -y curl libjemalloc2 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Ruby Setup | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build | |
run: bundle exec rake | |
- name: SimpleCov Report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage |