mirror of
https://github.com/NotAShelf/tct.git
synced 2024-11-01 11:01:19 +00:00
25 lines
401 B
YAML
25 lines
401 B
YAML
name: "Build & Test CI"
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: actions/checkout@v4
|
|
|
|
- name: "Set up Go"
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.22'
|
|
|
|
- name: "Build"
|
|
run: go build -v ./.
|
|
|
|
- name: "Test"
|
|
run: go test -v ./.
|