Files
wolfssl/.github/workflows/async.yml
2023-03-30 19:33:54 +02:00

26 lines
531 B
YAML

name: Async Tests
on:
workflow_call:
jobs:
make_check:
strategy:
matrix:
config: [
# Add new configs here
'--enable-asynccrypt --enable-all --enable-dtls13',
]
name: make check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout wolfSSL
- name: Test wolfSSL async
run: |
bash -e async-check.sh keep # this step already tests the basic config
./configure ${{ matrix.config }}
make check