Skip to content

Bump mypy from 1.6.1 to 1.7.0 #46

Bump mypy from 1.6.1 to 1.7.0

Bump mypy from 1.6.1 to 1.7.0 #46

Workflow file for this run

name: Actions
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v4.1.1
- name: πŸ›  Set up Python 3
uses: actions/setup-python@v4.7.1
with:
python-version: "3.11"
- name: πŸ“¦ Install dependencies
run: make requirements
- name: πŸ–€ Lint with Black
run: make black-check
- name: πŸ”€ Lint with isort
run: make isort-check
- name: πŸ”’ Lint with mypy
run: make mypy
test:
name: Test with Python ${{ matrix.python-version }}
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: πŸ› οΈ Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: πŸ“¦ Install dependencies
run: make requirements
- name: πŸƒ Run tests
run: make test
- name: πŸ›  Build
run: make build
coverage:
name: Coverage
needs: test
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: πŸ›  Set up Python 3
uses: actions/setup-python@v4.7.1
with:
python-version: "3.11"
- name: πŸ“¦ Install dependencies
run: make requirements
- name: πŸ“€ Upload coverage to Codecov
run: |
make coverage
curl -sfSL https://codecov.io/bash | bash -