Skip to content

testing something

testing something #2

Workflow file for this run

name: Server build & publish
on:
push:
branches:
- main
paths:
- 'server/**'
- './github/workflows/server-ci.yaml'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Build run: go build -v ./server

Check failure on line 19 in .github/workflows/server-ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/server-ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 19
- name: Test
run: go test