OpenSSL SSL_pending problem #110
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow uses actions that are not certified by GitHub. They are provided by a third-party | |
| # and are governed by separate terms of service, privacy policy, and support documentation. | |
| name: D | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dlang-community/setup-dlang@v1 | |
| - name: 'Build & Test' | |
| run: | | |
| dub build --compiler=$DC | |
| dub test --compiler=$DC |