diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml new file mode 100644 index 00000000..43e765b0 --- /dev/null +++ b/.github/workflows/pr.yaml @@ -0,0 +1,19 @@ +name: PR + +on: + pull_request: + types: [opened, ready_for_review, synchronize] + +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - name: Setup Go 1.21.x + uses: actions/setup-go@v4 + with: + go-version: '1.20' + - name: Run tests + run: | + make build + make test diff --git a/README.md b/README.md index b7ac1fb0..16ec4e44 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Internal development platform binary launcher. Spin up a complete internal developer platform using industry standard technologies like Kubernetes, Argo, and backstage with only Docker required as a dependency. + This can be useful in several ways: * Create a single binary which can demonstrate an IDP reference implementation. * Use within CI to perform integration testing.