Skip to content

Bump poethepoet from 0.26.1 to 0.28.0 in /utils #4463

Bump poethepoet from 0.26.1 to 0.28.0 in /utils

Bump poethepoet from 0.26.1 to 0.28.0 in /utils #4463

Workflow file for this run

name: Validate Intake Formats
on:
pull_request:
branches: [main]
workflow_dispatch:
defaults:
run:
working-directory: utils
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v3
id: setup-python
with:
python-version: "3.10"
- name: Install Poetry
run: |
pip install poetry
poetry config virtualenvs.in-project true
- name: Install dependencies
run: |
poetry install
- name: Execute tests
run: |
poetry run pytest test_formats.py --color=yes -vv --changes