-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For inconsistent versions in GitHubCI yml files.
- Loading branch information
1 parent
be1af69
commit 4f2d48c
Showing
5 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
src/FileConventions.Test/DummyFiles/DummyCIWithSamePulumiVersion.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
jobA: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Pulumi CLI | ||
uses: pulumi/[email protected] | ||
with: | ||
pulumi-version: 3.40.0 | ||
- name: Print "Hello World!" | ||
run: echo "Hello World!" | ||
jobB: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Pulumi CLI | ||
uses: pulumi/[email protected] | ||
with: | ||
pulumi-version: 3.40.0 | ||
- name: Print "Hello World!" | ||
run: echo "Hello World!" |
25 changes: 25 additions & 0 deletions
25
src/FileConventions.Test/DummyFiles/DummyCIWithoutSamePulumiVersion.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
jobA: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Pulumi CLI | ||
uses: pulumi/[email protected] | ||
with: | ||
pulumi-version: 3.40.0 | ||
- name: Print "Hello World!" | ||
run: echo "Hello World!" | ||
jobB: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Pulumi CLI | ||
uses: pulumi/[email protected] | ||
with: | ||
pulumi-version: 3.41.0 | ||
- name: Print "Hello World!" | ||
run: echo "Hello World!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters