Skip to content

Commit

Permalink
chore(ci): Add CI for GO Feature Flag
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Poignant <[email protected]>
  • Loading branch information
thomaspoignant committed Aug 5, 2024
1 parent 51d455d commit c3bbc0f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,25 @@ jobs:
working-directory: ./providers/openfeature-meta_provider
- name: Lint and test
run: bin/rake

test_go_feature_flag_provider:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./providers/openfeature-go-feature-flag-provider
strategy:
matrix:
ruby-version:
- "3.3"
- "3.2"
- "3.1"
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
working-directory: ./providers/openfeature-go-feature-flag-provider
- name: Lint and test
run: bin/rake

0 comments on commit c3bbc0f

Please sign in to comment.