Skip to content

Run unit tests in CI and use go 1.22 #3

Run unit tests in CI and use go 1.22

Run unit tests in CI and use go 1.22 #3

Workflow file for this run

name: Unit Tests
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- master
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Unit Tests
run: go test ./...