Skip to content

Fix wrong minimum Go version in README #54

Fix wrong minimum Go version in README

Fix wrong minimum Go version in README #54

Workflow file for this run

name: Go tests
on:
push:
branches:
- master
pull_request:
jobs:
gotests:
runs-on: ubuntu-20.04
strategy:
matrix:
go-version:
- "1.20"
- "1.21"
name: Tests for Go ${{ matrix.go-version}}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Print env vars
run: env
- name: Unit tests
run: make test
- name: Check code coverage
run: ./check_coverage.sh
- name: Display code coverage
run: make coverage
- name: OpenAPI Check
run: make openapi-check
- name: REST API Tests
run: make integration_tests