fix(dict): June updates #802
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: Test GitHub Action | |
on: [pull_request] | |
jobs: | |
shallow: | |
name: Spell Check with Typos | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v4 | |
- name: Prepare file with mistakes. | |
run: echo "Finallizes" > file.txt | |
- name: Test force pass with mistakes | |
continue-on-error: true | |
uses: ./ | |
with: | |
files: ./file.txt | |
- name: Prepare file with no mistakes. | |
run: echo "Finalizes" > file.txt | |
- name: Test pass with no mistakes | |
uses: ./ | |
with: | |
files: ./file.txt | |
deep: | |
name: Spell Check with Type w/History | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Prepare file with mistakes. | |
run: echo "Finallizes" > file.txt | |
- name: Test force pass with mistakes | |
continue-on-error: true | |
uses: ./ | |
with: | |
files: ./file.txt | |
- name: Prepare file with no mistakes. | |
run: echo "Finalizes" > file.txt | |
- name: Test pass with no mistakes | |
uses: ./ | |
with: | |
files: ./file.txt |