Update svenstaro/upload-release-action action to v2.11.3 #76
This file contains hidden or 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: Pull & push actions | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| paths-ignore: | |
| - '.github/workflows/**' | |
| jobs: | |
| validate: | |
| runs-on: "ubuntu-latest" | |
| name: Validate | |
| steps: | |
| - uses: "actions/[email protected]" | |
| - name: HACS Action | |
| uses: "hacs/action@main" | |
| with: | |
| category: "integration" | |
| - name: Hassfest validation | |
| uses: "home-assistant/actions/hassfest@master" | |
| style: | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| name: Check style formatting | |
| steps: | |
| - uses: "actions/[email protected]" | |
| - uses: "actions/[email protected]" | |
| with: | |
| python-version: "3.x" | |
| - run: python3 -m pip install black | |
| - run: black . |