Skip to content

chore(deps-dev): bump types-pyyaml from 6.0.12.12 to 6.0.12.20240311 #489

chore(deps-dev): bump types-pyyaml from 6.0.12.12 to 6.0.12.20240311

chore(deps-dev): bump types-pyyaml from 6.0.12.12 to 6.0.12.20240311 #489

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
workflow_dispatch:
inputs: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Test with pytest
run: |
poetry run pytest
mypy:
name: Static type checking with mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry env use 3.10
poetry install
- name: Run mypy
run: |
poetry run mypy --namespace-packages -p meltano.edk