Create SNU_2D_ProgrammingTools_REPOLIST_V26.urll #1044
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will download a prebuilt Ruby version, install dependencies, and run linters | |
name: Rails - Install dependencies and run linters | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e | |
with: | |
bundler-cache: true | |
# Add or Replace any other security checks here | |
- name: Run security checks | |
run: | | |
bin/bundler-audit --update | |
bin/brakeman -q -w2 | |
# Add or Replace any other Linters here | |
- name: Run linters | |
run: | | |
bin/rubocop --parallel |