-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial K8s Github Actions workflow
- Loading branch information
1 parent
5a8c6b8
commit fbfa3ba
Showing
3 changed files
with
34 additions
and
2 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,31 @@ | ||
# Optionally debug via SSH | ||
# Ref: https://fleetdm.com/engineering/tips-for-github-actions-usability | ||
# | ||
# To use this step uncomment and place anywhere in the build steps. The build will pause on this step and | ||
# output a ssh address associated with the Github action worker. Helpful for debugging build steps and | ||
# and intermediary files/artifacts. | ||
# | ||
# - name: Setup tmate session | ||
# uses: mxschmitt/action-tmate@v3 | ||
|
||
name: K8s Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/build.yml | ||
|
||
test: | ||
# needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install k3d | ||
run: | | ||
wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash | ||
# kubectl get nodes | ||
|
||
- name: Setup tmate session | ||
uses: mxschmitt/action-tmate@v3 |
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