sparse-intern-71089
01/21/2022, 10:41 PMgreat-queen-39697
01/24/2022, 8:24 PMlively-author-18255
01/25/2022, 2:05 AMSuccessfully created virtual environment!
Installing dependencies from Pipfile.lock
lively-author-18255
01/25/2022, 2:08 AM- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9.9
architecture: 'x64'
and pipenv, pulumi
- name: Install Pulumi prereqs
run: |
pip install --upgrade pip
pip install --upgrade pipenv
pipenv install
- name: Install pulumi
uses: pulumi/setup-pulumi@v2
but for some reason I still get
ModuleNotFoundError: No module named 'pulumi'
great-queen-39697
01/25/2022, 3:00 PMlively-author-18255
01/25/2022, 10:21 PMname: Pulumi Preview
on:
pull_request:
paths-ignore:
- 'path1'
- 'path2'
jobs:
preview:
runs-on: ubuntu-latest
name: Pulumi preview
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9.9
- name: Install pipenv
run: |
pip install --upgrade pip
pip install --upgrade pipenv
pipenv install
- uses: pulumi/actions@v3
with:
command: preview
stack-name: mystack/dev
work-dir: ./mydir
comment-on-pr: true
lively-author-18255
01/25/2022, 10:21 PMgreat-queen-39697
01/26/2022, 4:49 PMlively-author-18255
02/02/2022, 7:51 PM