Skip to content

feat(suite/step/syscalls): add mutually-exclusive-args constr support #407

feat(suite/step/syscalls): add mutually-exclusive-args constr support

feat(suite/step/syscalls): add mutually-exclusive-args constr support #407

Workflow file for this run

name: CI build
on:
pull_request:
jobs:
build-and-test:
name: build-and-test-${{ matrix.arch }}
runs-on: ${{ (matrix.arch == 'arm64' && 'ubuntu-22.04-arm') || 'ubuntu-22.04' }}
strategy:
matrix:
arch: [amd64, arm64]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: make build
- name: Test
run: make test