Skip to content

ci: Bump poetry from 1.5.1 to 1.6.0 in /.github/workflows (#51) #134

ci: Bump poetry from 1.5.1 to 1.6.0 in /.github/workflows (#51)

ci: Bump poetry from 1.5.1 to 1.6.0 in /.github/workflows (#51) #134

Workflow file for this run

name: Test tap-pulumi-cloud
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
env:
FORCE_COLOR: "1"
NOXSESSION: tests-${{ matrix.python-version }}
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install pip
pip --version
- name: Install Poetry
run: |
pipx install poetry
pipx inject poetry poetry-dynamic-versioning[plugin]
poetry --version
poetry self show plugins
- name: Install Nox
run: |
pipx install nox
pipx inject nox nox-poetry
nox --version
- name: Run tests
env:
TAP_PULUMI_CLOUD_TOKEN: ${{ secrets.TAP_PULUMI_CLOUD_TOKEN }}
TAP_PULUMI_CLOUD_START_DATE: ${{ secrets.TAP_PULUMI_CLOUD_START_DATE }}
run: |
nox