Skip to content

Merge branch 'main' of https://github.com/OwO-Network/DeepLX #89

Merge branch 'main' of https://github.com/OwO-Network/DeepLX

Merge branch 'main' of https://github.com/OwO-Network/DeepLX #89

Workflow file for this run

on:
push:
pull_request:
name: CI
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Install golint
run: go install golang.org/x/lint/golint@latest
- name: Build
run: go build ./...
- name: Test
run: go test ./...