Skip to content

change merge mode for address and telecom #38

change merge mode for address and telecom

change merge mode for address and telecom #38

Workflow file for this run

name: CI - Lint
on:
push:
jobs:
lint:
name: ${{ matrix.os }}${{ matrix.arch }} - Python ${{ matrix.python-version }} - lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
arch: [x64]
python-version: ["3.10.x"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.arch }}
- name: Set up Poetry and upgrade pip
run: |
pip install -U pip poetry
- name: Install this package
run: |
poetry install
- name: Run tests
run: |
poetry run lint