Skip to content

Update dependency mypy to v1.11.1 #353

Update dependency mypy to v1.11.1

Update dependency mypy to v1.11.1 #353

Workflow file for this run

---
name: CI
on:
workflow_dispatch:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*' # match basic semver tags
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: 3.12.2
- name: Install build & test dependencies
run: |
pip3 install --disable-pip-version-check --progress-bar off 'poetry'
poetry install --no-ansi --no-interaction
- name: Run linters
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: 3.11.4
- name: Install build & test dependencies
run: |
pip3 install --disable-pip-version-check --progress-bar off 'poetry'
- name: Cache dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: ${{ runner.os }}-pip-
- name: Build & install
run: |
poetry build --no-ansi --no-interaction && \
poetry install --no-ansi --no-interaction
- name: Run tests
run: poetry run pytest --full-trace
- name: Test basic cli elements
run: |
( set -x ; poetry run isup --version )
( set -x ; poetry run isup --help )
release:
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- name: Ship a release
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
if: startsWith(github.ref, 'refs/tags/v')
with:
files: |
dist/downforeveryone*.whl
dist/downforeveryone*.tar.gz