Skip to content

Commit

Permalink
CI integration on Github
Browse files Browse the repository at this point in the history
  • Loading branch information
lecid committed Apr 30, 2024
1 parent 7c8fb3f commit 1192c6d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Ruby

on: [push,pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.3
- name: Getting dependencies (Bundle)
run: |
gem install bundler -v 2.2.3
bundle install
- name: Running test Rspec
run: |
bundle exec rake
- name: Running CVE security audit
run: |
bundle exec rake audit

0 comments on commit 1192c6d

Please sign in to comment.