Skip to content

build test 5

build test 5 #9

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: |
go build -v ../app/
- name: Test
run: go test