Bumps [snok/install-poetry](https://github.com/snok/install-poetry) from 1.3 to 1.4. - [Release notes](https://github.com/snok/install-poetry/releases) - [Commits](https://github.com/snok/install-poetry/compare/v1.3...v1.4) --- updated-dependencies: - dependency-name: snok/install-poetry dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
|
|
name: lint
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'gh-pages'
|
|
pull_request:
|
|
branches: [ master, pydantic_v2 ]
|
|
|
|
jobs:
|
|
lint:
|
|
name: "Python ${{ matrix.python-version }}"
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'collerek/ormar'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.11
|
|
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1.4
|
|
with:
|
|
version: 1.4.2
|
|
virtualenvs-create: false
|
|
|
|
- name: Poetry details
|
|
run: |
|
|
poetry --version
|
|
poetry config --list
|
|
|
|
- name: Install dependencies
|
|
run: poetry install --extras "all" --no-root
|
|
|
|
- name: Format
|
|
run: make fmt
|
|
|
|
- name: Lint
|
|
run: make lint
|