Skip to content

SortTags deduplicates, uses slices.SortStable #23

SortTags deduplicates, uses slices.SortStable

SortTags deduplicates, uses slices.SortStable #23

Workflow file for this run

---
name: Test
on:
- pull_request
jobs:
test:
strategy:
matrix:
go:
- '1.19.x'
- '1.20.x'
label:
- [self-hosted, linux, arm64, segment]
- ubuntu-latest
runs-on: ${{ matrix.label }}
steps:

Check failure on line 19 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/go.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- uses: actions/checkout@v2
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Download Dependencies
run: go mod download
- name: Run Tests
run: go test -race -tags=${{ matrix.tags }} ./...