Update changelog, bump version: 1.4.1 #60
Workflow file for this run
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: "Lint" | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-dev.txt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip- | |
| - uses: actions/checkout@v4 | |
| with: | |
| # Make sure the actual branch is checked out when running on pull requests | |
| ref: ${{ github.head_ref }} | |
| - name: ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| # - name: Pylint | |
| # run: | | |
| # pip install -r requirements-dev.txt | |
| # pylint handle.py | |
| - name: Black | |
| # Match version in poetry.lock | |
| uses: psf/black@24.4.2 | |
| - name: Run mypy | |
| uses: sasanquaneuf/mypy-github-action@9d43a0bf65fc419f7aa493ac24af5e2226edffbb | |
| with: | |
| checkName: "lint" # NOTE: this needs to be the same as the job name | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |