Regenerated API clients with Kiota #140
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
name: Build and test Ruby Get Started sample | |
on: | |
push: | |
branches: | |
- main | |
- regen/clients-** | |
paths: | |
- 'get-started/azure-auth/ruby/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'get-started/azure-auth/ruby/**' | |
jobs: | |
build-azure: | |
defaults: | |
run: | |
working-directory: get-started/azure-auth/ruby/ | |
runs-on: ubuntu-latest | |
needs: [] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1 | |
bundler-cache: true | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake |