DeepLX/.github/workflows/ci.yaml
Vincent Young ddd4de353d
ci: add ci
2023-11-19 19:26:07 -05:00

25 lines
368 B
YAML

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@v2
with:
go-version: '1.19'
- name: Build
run: go build ./...
- name: Test
run: go test ./...