Files
azure-openai-proxy/.github/workflows/build.yml
2023-04-04 12:37:33 +08:00

32 lines
587 B
YAML

name: Build
on:
push:
branches: [ "master" ]
paths-ignore:
- 'docs/**'
- 'assets/**'
- '**/*.gitignore'
- '**/*.md'
pull_request:
branches: [ "master" ]
paths-ignore:
- 'docs/**'
- 'assets/**'
- '**/*.gitignore'
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: make build