Skip to content

Fix Docker event matching for non-latest plugin tags #15

Fix Docker event matching for non-latest plugin tags

Fix Docker event matching for non-latest plugin tags #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Install tparse
run: go install github.com/mfridman/tparse@latest
- name: Run tests
run: |
set -o pipefail
go test -race -cover -json ./... | tparse -all -slow 10
- name: Build check
run: go build ./...