Skip to content

Commit

Permalink
feat: pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheese authored Aug 25, 2023
1 parent 84234d8 commit fd71dfa
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
TIDB_HOST: '127.0.0.1'
TIDB_PORT: '4000'
TIDB_USER: 'root'
TIDB_PASSWORD: ''
TIDB_DB_NAME: 'test'
USE_SSL: 'false'

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Setup TiDB
uses: Icemap/tidb-action@main

- name: Build and run
run: make

0 comments on commit fd71dfa

Please sign in to comment.