🐛 Empty address creates QHostAddress::Any
like in Qt5 (#10)
#34
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: 🎨 Run Linters | |
on: [push] | |
jobs: | |
clang-format: | |
if: "!contains(github.event.head_commit.message, '🎨')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DoozyX/clang-format-lint-action@v0.12 | |
name: "🎨 Run clang-format" | |
with: | |
source: '.' | |
extensions: 'hpp,cpp' | |
clangFormatVersion: 11 | |
inplace: True | |
- uses: EndBug/add-and-commit@v7.2.1 | |
name: "Commit clang-format Change" | |
with: | |
author_name: Clang Robot | |
author_email: robot@clang-format.com | |
message: '🎨 Run clang-format' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |