Skip to content

Bump project to version 0.4.0, update CHANGELOG #47

Bump project to version 0.4.0, update CHANGELOG

Bump project to version 0.4.0, update CHANGELOG #47

Workflow file for this run

name: Python Check
on: [push]
jobs:
check:
name: Check Python ${{ matrix.python_version }}
strategy:
fail-fast: false
matrix:
python_version: ["3.9", "3.10", "3.11"]
runs-on: windows-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: x64
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install Dependencies
run: poetry install
- name: Run yapf
run: poetry run yapf -r -d unlicense
- name: Run mypy
run: poetry run mypy --strict unlicense