Skip to content

updates

updates #3

Workflow file for this run

name: Testing the CI
on:
push:
branches:
- rp-ci-updates
jobs:
# docker:
# uses: ./.github/workflows/ci-docker.yml
# with:
# dockerhub-username: kavaops
# secrets: inherit
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo from current commit
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Go Build Cache for Docker
uses: actions/cache@v3
with:
path: go-build-cache
key: ${{ runner.os }}-go-build-cache-${{ hashFiles('**/go.sum') }}
- name: run unit tests
run: make test
- name: run e2e tests
run: make docker-build test-e2e