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

47 lines
977 B
YAML
Raw Normal View History

2021-07-23 09:00:07 +00:00
name: Test Unit
on:
pull_request:
branches:
- '*'
env:
2023-02-23 14:06:05 +00:00
GO_VERSION: '1.20'
IN_DOCKER: ""
2021-07-23 09:00:07 +00:00
jobs:
test-unit:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: ${{ github.workspace }}/go/src/github.com/traefik/traefik
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code
uses: actions/checkout@v2
with:
path: go/src/github.com/traefik/traefik
fetch-depth: 0
- name: Cache Go modules
2022-10-21 14:08:05 +00:00
uses: actions/cache@v3
2021-07-23 09:00:07 +00:00
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-test-unit-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-test-unit-go-
- name: Avoid generating webui
run: touch webui/static/index.html
2021-07-23 09:00:07 +00:00
- name: Tests
run: make test-unit