[Spec Insert] Dedupped param types and renamed Paths and Http Methods
to Endpoints
#26
Workflow file for this run
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: Lint and Test Jekyll Spec Insert | |
on: | |
push: | |
paths: | |
- 'spec-insert/**' | |
pull_request: | |
paths: | |
- 'spec-insert/**' | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: { ruby-version: 3.3.0 } | |
- run: bundle install | |
- working-directory: spec-insert | |
run: | | |
bundle exec rubocop | |
bundle exec rspec |