Added initial support for P2P-based image distribution #2997
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: Check misspell | |
on: | |
pull_request: | |
branches: "*" | |
jobs: | |
check-misspell: | |
name: Check Misspell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Check Misspell | |
uses: docker://dragonflyoss/linter:v0.2.7 | |
with: | |
args: bash -c "find . -type f | grep -v vendor | grep -v go.sum | xargs misspell -error" |