1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

.github/workflows/test.yml: run tests on alpine linux.

This commit is contained in:
Henrik Hautakoski 2024-03-07 19:37:58 +01:00
parent aeac190c94
commit 2d6d4e84ff

View file

@ -25,4 +25,23 @@ jobs:
run: go test -v ./...
- name: Test API
run: cd api; go test -v ./...
run: cd api; go test -v ./...
test-alpine:
strategy:
fail-fast: false
matrix:
tag: ["1.20-alpine3.19", "1.21-alpine3.19"]
runs-on: ubuntu-latest
name: Test alpine (${{ matrix.tag }})
container:
image: golang:${{ matrix.tag }}
steps:
- uses: actions/checkout@v4
- name: Test
run: go test -v ./...
- name: Test API
run: cd api; go test -v ./...