8000 feat: Deps update · remyz17/odooghost@90b4b2b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

feat: Deps update

feat: Deps update #87

Workflow file for this run

---
name: Linting
on:
pull_request:
branches:
- main
workflow_call:
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install poetry
run: pipx install poetry
- name: Setup Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'poetry'
- name: Install requirements
run: poetry install --with lint
- name: Run linters
run: |
set -o pipefail
poetry run make lint
0