Skip to content

chore: bump package version #38

chore: bump package version

chore: bump package version #38

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: MyPy Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
if: |
! contains(github.event.head_commit.message, 'docs') &&
! contains(github.event.head_commit.message, 'chore')
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
fail-fast: false
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry poethepoet
poetry install
- name: Lint the code
run: |
poe lint