Skip to content

Update perror code and regenerate perror.go #14

Update perror code and regenerate perror.go

Update perror code and regenerate perror.go #14

Workflow file for this run

name: "CI"
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout mysql-tester
uses: actions/checkout@v4
with:
path: 'mysql-tester'
- name: checkout TiDB
uses: actions/checkout@v4
with:
repository: pingcap/tidb
path: 'tidb'
- name: setup go
working-directory: 'mysql-tester'
uses: actions/setup-go@v4

Check failure on line 21 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 21, Col: 9): Unexpected value 'uses' .github/workflows/ci.yml (Line: 22, Col: 9): Unexpected value 'with'
with:
go-version: 1.21
- name: vet
working-directory: 'mysql-tester'
run: go vet ./...
- name: build
working-directory: 'mysql-tester'
run: make build
- name: test
working-directory: 'mysql-tester'
run: make test