Skip to content

feat: Initial implementation for structs and type aliases #1

feat: Initial implementation for structs and type aliases

feat: Initial implementation for structs and type aliases #1

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
on:
push:
branches:
- main
pull_request: {}
workflow_dispatch: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.20", "1.21", "1.22"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go test -cover ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: golangci/golangci-lint-action@v6
with:
version: v1.59.1
release-please:
runs-on: ubuntu-latest
needs: [test, lint]
if: github.ref == 'refs/heads/main'
steps:
- uses: googleapis/release-please-action@v4
id: release-please
with:
token: ${{ secrets.PAT }}
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json