Skip to content

Updated Github CI workflows #7

Updated Github CI workflows

Updated Github CI workflows #7

Workflow file for this run

name: tests
on: [workflow_call]
jobs:
test:
name: unit tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18', '1.19', '1.20', '1.21.x' ]
services:
manticoresearch-manticore:
image: manticoresearch/manticore:dev
env:
EXTRA: 1
ports:
- 9408:9308
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
go get github.com/stretchr/testify/assert
- name: Test with the Go CLI
run: |
sleep 3m

Check failure on line 34 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
cd test && go test