plano/.github/workflows/arch_tools_tests.yml
Branch Vincent 662546481a
move pytest to dev deps and migrate to poetry 2 (#602)
* move pytest to dev deps

* migrate to poetry 2 and standard metadata
2025-10-24 15:58:54 -07:00

40 lines
757 B
YAML

name: arch tools tests
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
jobs:
arch_tools_tests:
runs-on: ubuntu-latest-m
defaults:
run:
working-directory: ./arch/tools
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: install poetry
run: |
export POETRY_VERSION=2.2.1
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
- name: install arch tools
run: |
poetry install
- name: run tests
run: |
poetry run pytest