Skip to content

refactor: optimize loop for filtered versions in project creation com… #1181

refactor: optimize loop for filtered versions in project creation com…

refactor: optimize loop for filtered versions in project creation com… #1181

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
tags-ignore:
- "*"
pull_request:
branches: ["main"]
permissions:
contents: read
env:
GOTOOLCHAIN: local
jobs:
build:
name: ${{ matrix.os }}
env:
SHOPWARE_CLI_DISABLE_WASM_CACHE: 1
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # ratchet:actions/setup-go@v5
with:
go-version: '1.24'
check-latest: true
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...