Skip to content

Allow for "billed per agreement" in shopping cart checkout #57

Allow for "billed per agreement" in shopping cart checkout

Allow for "billed per agreement" in shopping cart checkout #57

Workflow file for this run

name: Linters
on:
push:
branches: [ version-13, version-14, version-15 ]
pull_request:
branches: [ version-13, version-14, version-15 ]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
fetch-depth: 2
- name: Prettify code
uses: creyD/[email protected]
with:
commit_message: "style: prettify code"
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install mypy
run: pip install mypy types-python-dateutil
- name: Run mypy
uses: sasanquaneuf/mypy-github-action@releases/v1
with:
checkName: 'mypy'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}