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:
parent
aeac190c94
commit
2d6d4e84ff
1 changed files with 20 additions and 1 deletions
21
.github/workflows/test.yml
vendored
21
.github/workflows/test.yml
vendored
|
|
@ -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 ./...
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue