Additional filter for xml string added #342
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 | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: macOS-14 | |
permissions: | |
pull-requests: write | |
statuses: write | |
env: | |
DEVELOPER_DIR: '/Applications/Xcode_15.4.app/Contents/Developer' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # https://github.com/danger/danger/issues/1103 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
bundler-cache: true | |
- run: bundle exec rake periphery:install | |
- run: bundle exec danger | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} |