server: correctly adjudicate collision bind() of specific port #51
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: Spell Check | |
on: | |
push: | |
paths-ignore: | |
- test | |
- bundle | |
- .ci | |
- "**/.db" | |
pull_request: | |
paths-ignore: | |
- test | |
- bundle | |
- .ci | |
- "**/.db" | |
workflow_dispatch: | |
jobs: | |
codespell: | |
name: Spell Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Apt | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install codespell | |
- name: codespell | |
run: git ls-files | grep -vE 'test|bundle|.ci|.\db' | xargs codespell -I .ci-local/codespell.dic |