-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
858c8c8
commit 6f6c475
Showing
2 changed files
with
48 additions
and
22 deletions.
There are no files selected for viewing
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,26 @@ | ||
name: Windows SDE tests | ||
on: | ||
pull_request: | ||
branches: [ '*' ] | ||
env: | ||
GOPROXY: https://proxy.golang.org,direct | ||
AWS_REGION: "us-west-2" | ||
jobs: | ||
WindowSDETests: | ||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
contents: read | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git clone the repository | ||
uses: actions/checkout@v3 | ||
- name: configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
role-to-assume: arn:aws:iam::620771051181:role/GitHubAction-IAM-Role | ||
role-session-name: GithubRoleTest | ||
aws-region: ${{ env.AWS_REGION }} | ||
# Hello from AWS: WhoAmI | ||
- name: Sts GetCallerIdentity | ||
run: | | ||
aws sts get-caller-identity |
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