1
0
Fork 0
mirror of https://github.com/Luzifer/go-dhparam.git synced 2024-11-08 15:20:03 +00:00

CI: Update workflow

This commit is contained in:
Knut Ahlers 2024-09-20 10:11:26 +02:00
parent 07b2fd08e7
commit b54b0ddfe4
Signed by: luzifer
SSH key fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E

View file

@ -26,11 +26,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install required packages
run: |
apk --no-cache add openssl
- name: go test
run: |
apk --no-cache add openssl && \
go test -v -cover
...