forked from ontoportal/ontoportal_web_ui
-
Notifications
You must be signed in to change notification settings - Fork 5
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
27a8192
commit 31f49a6
Showing
298 changed files
with
13,120 additions
and
12,295 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,63 @@ | ||
# 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 tests with Rake | ||
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | ||
name: "Ruby on Rails CI" | ||
|
||
on: | ||
push: | ||
pull_request_target: | ||
types: [ opened, reopened ] | ||
env: | ||
API_URL: ${{ secrets.API_URL }} | ||
API_KEY: ${{ secrets.API_KEY }} | ||
BIOMIXER_URL: ${{ secrets.BIOMIXER_URL }} | ||
FAIRNESS_URL: ${{ secrets.FAIRNESS_URL }} | ||
ANNOTATOR_URL: ${{ secrets.ANNOTATOR_URL }} | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:latest | ||
ports: | ||
- "3306:3306" | ||
env: | ||
MYSQL_ROOT_PASSWORD: 'bp_user' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
# Add or replace dependency steps here | ||
- name: Install Ruby and gems | ||
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 | ||
with: | ||
ruby-version: 2.7.5 | ||
bundler-cache: true | ||
# Add or replace database setup steps here | ||
- name: set up config file | ||
run: cp config/database.yml.sample config/database.yml | ||
- name: Set up database schema | ||
run: RAILS_ENV=test bin/rails db:setup | ||
# Add or replace test runners here | ||
- name: Run tests | ||
run: RAILS_ENV=test bin/rails test -v | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Install Ruby and gems | ||
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 | ||
with: | ||
ruby-version: 2.7.5 | ||
bundler-cache: true | ||
# Add or replace any other lints here | ||
- name: Security audit dependencies | ||
run: bundle exec bundler-audit --update | ||
- name: Security audit application code | ||
run: bundle exec brakeman -q -w2 | ||
- name: Lint Ruby files | ||
run: bundle exec rubocop --parallel -A |
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 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 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
Oops, something went wrong.