Skip to content

feat: chaos test implementation #339

feat: chaos test implementation

feat: chaos test implementation #339

Workflow file for this run

# SPDX-FileCopyrightText: 2025 INDUSTRIA DE DISEÑO TEXTIL S.A. (INDITEX S.A.)
# SPDX-License-Identifier: Apache-2.0
name: Static code analysis and unit testing
permissions:
contents: read
on:
push:
paths-ignore:
- 'docs/**'
workflow_dispatch:
jobs:
code-verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- id: parse-gomod
name: Extract Go version from go.mod file
uses: Arthur1/parse-gomod-action@v0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ steps.parse-gomod.outputs.go}}
- name: Run code checks and unit tests
run: |
make verify