Skip to content

Commit 97b69f8

Browse files
committed
add github actions
1 parent d98c9db commit 97b69f8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Pulumi
2+
on:
3+
- pull_request
4+
jobs:
5+
preview:
6+
name: Pulumi Preview
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-python@v5
11+
with:
12+
python-version: 3.13
13+
14+
- run: pip install -r requirements.txt
15+
- uses: pulumi/actions@v6
16+
with:
17+
command: preview
18+
cloud-url: ${{ secrets.PULUMI_CLOUD_URL }}

0 commit comments

Comments
 (0)