Skip to content

Commit

Permalink
fix: corrige pythonpachage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hudsonbrendon committed Mar 27, 2024
1 parent fd77935 commit 62d3121
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,33 @@ on:
- master
tags:
- "**"
pull_request:
branches:
- master

jobs:
lint:
runs-on: ubuntu-latest
name: lint ${{ matrix.os }} / ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
os: [ubuntu]
python-version: ["3.9", "3.10", "3.11", "pypy3.8", "pypy3.9"]

env:
PYTHON: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
DEPS: yes

defaults:
run:
working-directory: ./pydantic_br
runs-on: ${{ matrix.os }}-latest

steps:
- name: Action Checkout
uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Set up Python
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
Expand Down

0 comments on commit 62d3121

Please sign in to comment.