Skip to content

feat: Added Support For Applications Api #55 #182

feat: Added Support For Applications Api #55

feat: Added Support For Applications Api #55 #182

Workflow file for this run

name: Test and Lint
on:
push:
branches:
- '**'
pull_request:
branches: [ main ]
jobs:
test-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '2.6', '2.7', '3.0' ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests and linter
run: |
bundle exec rubocop
bundle exec rake
- name: Publish code coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}