Skip to content

Commit

Permalink
beginning of kubernetes-in-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Jun 10, 2024
1 parent 17a00dd commit 62e0e36
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-k8s.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Parsl

on:
pull_request:
types:
- opened
- synchronize

jobs:
k8s-kind-suite:
runs-on: ubuntu-20.04
timeout-minutes: 60

steps:
- uses: actions/checkout@master

- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: parsl-k8s

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
tags: parsl:ci

0 comments on commit 62e0e36

Please sign in to comment.