1
0
mirror of https://github.com/Luzifer/go-dhparam.git synced 2024-09-16 15:18:27 +00:00

Add Github Actions for testing

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-02-10 16:55:24 +01:00
parent d806505a49
commit a984299b4e
Signed by: luzifer
GPG Key ID: D91C3E91E4CAD6F5

36
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,36 @@
---
name: test
on:
push:
jobs:
test:
strategy:
matrix:
version:
- '1.19-alpine'
- '1.20-alpine'
- alpine
defaults:
run:
shell: sh
container:
image: golang:${{ matrix.version }}
env:
CGO_ENABLED: 0
GOPATH: /go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: go test
run: |
apk --no-cache add openssl && \
go test -v -cover
...