fix: remove webrick by updating dependencies #170
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: Linting | |
on: [pull_request, workflow_dispatch, workflow_call] | |
concurrency: | |
group: lint-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
linting: | |
name: Linting | |
runs-on: macos-13 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: bundle install | |
- name: Run Linting | |
run: bundle exec fastlane lint summary:$GITHUB_STEP_SUMMARY |