Skip to content

Fixed job management #4

Fixed job management

Fixed job management #4

Workflow file for this run

# This workflow will install Go-Lang dependencies, run tests with a variety of Go-Lang versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit-Testing, Coverage
on:
push:
branches:
- master
- develop
- feature/*
- bug/*
pull_request:
branches:
- master
- develop
- feature/*
- bug/*
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.22"
- "1.23"
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Run Tests
run: |
make test
- name: Run Coverage
run: |
make coverage