Skip to content

Commit

Permalink
Migrate jenkins CI to GH CI (#93)
Browse files Browse the repository at this point in the history
* jenkins ci to GH ci

* jenkins ci to GH ci

* jenkins ci to GH ci

* jenkins ci to GH ci

* jenkins ci to GH ci

* jenkins ci to GH ci

* jenkins ci to GH ci
  • Loading branch information
pmallampati-sift authored Jun 24, 2024
1 parent 0544b4a commit 7b2e1a3
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Ruby-ci

on:
push:
branches:
- master
pull_request:
branches:
- master

env:
ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }}
API_KEY: ${{ secrets.API_KEY }}

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.4.2']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rspec --format RspecJunitFormatter --out test_results/rspec.xml --format progress

run_integration_tests:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
strategy:
matrix:
ruby-version: [ '2.4.2' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: |
bundle exec ruby test_integration_app/main.rb

0 comments on commit 7b2e1a3

Please sign in to comment.