2021-07-23 09:00:07 +00:00
|
|
|
name: Test Unit
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
env:
|
2024-02-07 16:14:07 +00:00
|
|
|
GO_VERSION: '1.22'
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
test-unit:
|
2024-01-19 14:12:05 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 16:00:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-01-09 16:00:07 +00:00
|
|
|
- name: Set up Go ${{ env.GO_VERSION }}
|
|
|
|
uses: actions/setup-go@v5
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
2024-01-09 16:00:07 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-07-23 09:00:07 +00:00
|
|
|
|
2021-09-15 08:36:14 +00:00
|
|
|
- name: Avoid generating webui
|
2022-02-18 14:44:08 +00:00
|
|
|
run: touch webui/static/index.html
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
run: make test-unit
|