Skip to content

chore(deps): update dependency typescript to v6 #10924

chore(deps): update dependency typescript to v6

chore(deps): update dependency typescript to v6 #10924

Workflow file for this run

name: test-go
permissions: {}
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
go: ['1.18.x']
include:
- os: windows-latest
go: '1.18.x'
- os: macos-latest
go: '1.18.x'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go }}
cache-dependency-path: go/go.sum
- name: lint
working-directory: go
run: gofmt -w .
- name: test
working-directory: go
run: go test ./...