Skip to content

detect poetry environment with pyenv #424

detect poetry environment with pyenv

detect poetry environment with pyenv #424

Workflow file for this run

name: ci-windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: update package manager & install python3 environment
run: |
pip install setuptools
pip install poetry
poetry install
- name: continuous integration process
run: poetry run alfred ci