add metric to emit number of pods using sts web identity or container credentials #100
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
name: test | |
on: pull_request | |
jobs: | |
test: | |
# this is to prevent the job to run at forked projects | |
if: github.repository == 'aws/amazon-eks-pod-identity-webhook' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19.x | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Test | |
run: go mod tidy && go mod vendor && go test ./... |