Skip to content

chore(deps): update python docker tag to v3.13 #165

chore(deps): update python docker tag to v3.13

chore(deps): update python docker tag to v3.13 #165

Workflow file for this run

name: Continuos Integration
on:
push:
branches:
- "**"
- "!main"
paths:
- "**.go"
- "**.mod"
workflow_call:
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x, 1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- run: go test ./... -v -count=1