Skip to content

Add marshal processor #4043

Add marshal processor

Add marshal processor #4043

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
unit-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-13, windows-2022-8-cores]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: |
go.sum
**/go.sum
- name: Run Tests
run: make test
- name: Run Updater Integration Tests (non-linux)
if: matrix.os != 'ubuntu-20.04'
run: make test-updater-integration
- name: Run Updater Integration Tests (linux)
if: matrix.os == 'ubuntu-20.04'
run: sudo make test-updater-integration