diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca634f7..f33a3c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,4 +25,23 @@ jobs: run: go test -v ./... - name: Test API - run: cd api; go test -v ./... \ No newline at end of file + 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 ./... +