Skip to content

Merge pull request #8 from ezzatron/renovate/actions-checkout-5.x #134

Merge pull request #8 from ezzatron/renovate/actions-checkout-5.x

Merge pull request #8 from ezzatron/renovate/actions-checkout-5.x #134

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
services:
nvector-test-api:
image: ghcr.io/ezzatron/nvector-test-api
ports:
- 17357:8000
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Make
run: make ci
- name: Publish coverage
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}