summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-with-docker.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-with-docker.yml')
-rw-r--r--.github/workflows/ci-with-docker.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci-with-docker.yml b/.github/workflows/ci-with-docker.yml
index ceab927..20e144e 100644
--- a/.github/workflows/ci-with-docker.yml
+++ b/.github/workflows/ci-with-docker.yml
@@ -28,3 +28,17 @@ jobs:
- name: Run ruby 3.1
run: docker-compose run ruby-3.1
+
+ test_openssl3:
+ name: Run test suite with docker and openssl 3.0
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Build docker images
+ run: docker build -t netssh_openssl3 -f Dockerfile.openssl3 .
+
+ - name: Run ruby 3.0 with openssl3
+ run: docker run --rm netssh_openssl3