Skip to content

solution(2024.1): historian hysteria #21

solution(2024.1): historian hysteria

solution(2024.1): historian hysteria #21

Workflow file for this run

name: Run unit tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
permissions:
contents: read
pull-requests: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
name: Test solutions
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
cache: true
- name: Run unit tests
run: go test ./...