Skip to content

Bump virtualenv from 20.25.1 to 20.26.6 in the pip group across 1 directory #163

Bump virtualenv from 20.25.1 to 20.26.6 in the pip group across 1 directory

Bump virtualenv from 20.25.1 to 20.26.6 in the pip group across 1 directory #163

Workflow file for this run

name: Install
on: [pull_request]
jobs:
install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Create wheel and tar.gz
run: |
poetry build
- name: Install package
run: |
python -m pip install dist/*.whl
- name: Test import and simple usage
run: |
python -c "import gridstatusio;print(gridstatusio.__version__)"