Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ self-hosted-runner:
# Empty array means no configuration variable is allowed.
config-variables:
- BREW_COMMIT_APP_ID
paths:
"**/.github/workflows/tests.yml":
ignore:
- unknown permission scope "code-quality"
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ jobs:
needs: syntax
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 30
permissions:
contents: read
code-quality: write
pull-requests: read
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -321,6 +325,12 @@ jobs:
disable_search: true
token: ${{ secrets.CODECOV_TOKEN }}

- uses: actions/upload-code-coverage@abb5995db9e0199b0e2bb9dbd136fce4cb1ec4d3 # v1
with:
file: ${{ steps.set-up-homebrew.outputs.repository-path }}/Library/Homebrew/test/coverage/coverage.xml
language: Ruby
label: code-coverage/simplecov

test-bot:
name: ${{ matrix.name }}
needs: syntax
Expand Down
Loading