Skip to content

Microservices

Microservices #1

Workflow file for this run

name: Lint workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build application
uses: ./.github/actions/build-application
- name: Lint with Flake8
run: poetry run make check