traefik/.github/workflows/test-unit.yaml

32 lines
521 B
YAML
Raw Normal View History

2021-07-23 09:00:07 +00:00
name: Test Unit
on:
pull_request:
branches:
- '*'
env:
GO_VERSION: '1.22'
2021-07-23 09:00:07 +00:00
jobs:
test-unit:
runs-on: ubuntu-latest
2021-07-23 09:00:07 +00:00
steps:
- name: Check out code
uses: actions/checkout@v4
2021-07-23 09:00:07 +00:00
with:
fetch-depth: 0
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
2021-07-23 09:00:07 +00:00
with:
go-version: ${{ env.GO_VERSION }}
2021-07-23 09:00:07 +00:00
- name: Avoid generating webui
run: touch webui/static/index.html
2021-07-23 09:00:07 +00:00
- name: Tests
run: make test-unit