Skip to content

build(deps): bump actions/setup-python from 5.1.0 to 5.2.0 #605

build(deps): bump actions/setup-python from 5.1.0 to 5.2.0

build(deps): bump actions/setup-python from 5.1.0 to 5.2.0 #605

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Setup Python 3.8
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: 3.8
- name: Install
run: |
pip install poetry
poetry install
- name: Format
run: |
poetry run black --check --diff linz_logger/*
- name: Lint
run: |
poetry run pylint linz_logger/*
- name: Import Sorting
run: |
poetry run isort --check --diff linz_logger/*
- name: Test
run: |
poetry run pytest