Skip to content

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

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

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

Workflow file for this run

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