Make sure fail on formatting also happens in pull requests #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: Self-test | |
on: [pull_request] | |
jobs: | |
self-test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out the verible-formatter-action on the source branch of the PR, which triggered action | |
- uses: actions/checkout@master | |
# Runs action.yml in the checked out repo | |
- uses: ./ | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |