Skip to content

feat: provide an option to skip cache on reads in the controller #1007

feat: provide an option to skip cache on reads in the controller

feat: provide an option to skip cache on reads in the controller #1007

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4.1.2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3.0.0
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.2.0
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3.2.0
if: github.ref == 'refs/heads/main'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: base
run: make base
-
name: unit-tests
run: make unit-tests
-
name: codecov
uses: codecov/codecov-action@v4.1.0
with:
files: ./_out/coverage-unit-tests.txt
-
name: unit-tests-race
run: make unit-tests-race
-
name: lint
run: make lint
-
name: runtime
run: make runtime
-
name: image-runtime
run: make image-runtime
-
name: push-image-runtime
if: github.ref == 'refs/heads/main'
env:
PUSH: "true"
run: make image-runtime
-
name: push-image-runtime-latest
if: github.ref == 'refs/heads/main'
env:
PUSH: "true"
run: make image-runtime TAG=latest