mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-11 10:26:46 +00:00
35 lines
961 B
YAML
35 lines
961 B
YAML
name: acceptance-test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/workflows/acceptance-test.yaml
|
|
- acceptance_test/**
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/workflows/acceptance-test.yaml
|
|
- acceptance_test/**
|
|
|
|
jobs:
|
|
test-makefile:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
|
with:
|
|
go-version-file: go.mod
|
|
cache-dependency-path: go.sum
|
|
- run: make -C acceptance_test check
|
|
- run: make -C acceptance_test
|
|
env:
|
|
OIDC_ISSUER_URL: https://accounts.google.com
|
|
OIDC_CLIENT_ID: REDACTED.apps.googleusercontent.com
|
|
YOUR_EMAIL: REDACTED@gmail.com
|
|
- run: make -C acceptance_test delete-cluster
|
|
- run: make -C acceptance_test clean
|