Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust workflow names for clarity #1665

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
lint-ts:
name: TypeScript lint checks
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand All @@ -33,6 +34,7 @@ jobs:
tslint -c tslint.json **/*.ts

unit-ts:
name: TypeScript unit tests
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand All @@ -49,13 +51,14 @@ jobs:
aws-role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run unit tests
- name: unit tests
working-directory: testing-unit-ts/mocha
run: |
npm install
npm test

unit-py:
name: Python unit tests
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand All @@ -72,13 +75,14 @@ jobs:
aws-role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run unit tests
- name: unit tests
working-directory: testing-unit-py
run: |
pip install -r requirements.txt
python -m pytest

unit-go:
name: Go unit tests
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand All @@ -95,11 +99,12 @@ jobs:
aws-role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run unit tests
- name: unit tests
working-directory: testing-unit-go
run: go test

unit-dotnet:
name: .NET unit tests
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand All @@ -116,7 +121,7 @@ jobs:
aws-role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run unit tests
- name: unit tests
working-directory: ${{ matrix.source-dir }}
run: |
dotnet test
Expand All @@ -130,6 +135,7 @@ jobs:
- testing-unit-fs-mocks

providers:
name: ${{ matrix.clouds }}${{ matrix.languages }} integration tests
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand All @@ -147,7 +153,7 @@ jobs:
aws-role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run ${{ matrix.clouds }}${{ matrix.languages }} Tests
- name: Run tests
run: make specific_test_set TestSet=${{ matrix.clouds }}${{ matrix.languages }}
env:
AWS_ACCESS_KEY_ID: ${{ steps.setup.outputs.aws-access-key-id }}
Expand Down Expand Up @@ -190,6 +196,7 @@ jobs:
- Fs

kubernetes:
name: Kubernetes integration tests
runs-on: pulumi-ubuntu-8core
permissions:
id-token: write
Expand Down
Loading