build(deps): bump braces from 3.0.2 to 3.0.3 #247
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
--- | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
cache: poetry | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies (Poetry) | |
run: poetry install --with=dev | |
- name: Install dependencies (Yarn) | |
run: yarn | |
- name: Install Shellcheck | |
run: sudo apt-get install -y shellcheck | |
- name: Lint with Shellcheck | |
run: yarn shellcheck | |
- name: Lint with mypy | |
run: yarn mypy | |
- name: Check spelling | |
run: yarn check-spelling | |
- name: Check formatting | |
run: yarn check-formatting | |
strategy: | |
matrix: | |
python-version: | |
- '3.11' | |
- '3.12' | |
name: QA | |
'on': | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master |