Replace two minus signs with an em dash #5
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
# test.yml ignores docs/* and **.md changes, but since the | |
# `lint` and `test` statuses are required, those PRs will block. | |
name: Dummy tests for unblocking PRs | |
on: | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '**.md' | |
jobs: | |
lint: | |
if: false # Skipped jobs still result in 'success'. | |
runs-on: ubuntu-latest | |
steps: | |
- run: false # unreachable | |
test: | |
if: false # Skipped jobs still result in 'success'. | |
runs-on: ubuntu-latest | |
steps: | |
- run: false # unreachable |