mirror of
https://github.com/eosswedenorg/thalos
synced 2026-07-03 11:53:41 +02:00
.github/workflows/test.yml: run tests on alpine linux.
This commit is contained in:
parent
aeac190c94
commit
2d6d4e84ff
1 changed files with 20 additions and 1 deletions
19
.github/workflows/test.yml
vendored
19
.github/workflows/test.yml
vendored
|
|
@ -26,3 +26,22 @@ jobs:
|
||||||
|
|
||||||
- name: Test API
|
- 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 ./...
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue