Sha256: 4f54b0bb8176bcf6c56b2f90361f1cb6c6cf3589749beec553244bc7b9f5e311

Contents?: true

Size: 934 Bytes

Versions: 13

Compression:

Stored size: 934 Bytes

Contents

name: Test
on:
  pull_request:
  push: { branches: master }

jobs:
  test:
    name: Run test suite with docker
    runs-on: ubuntu-latest
    env:
      COMPOSE_FILE: docker-compose.yml

    steps:
    - name: Checkout code
      uses: actions/checkout@v3

    - name: Build docker images
      run: docker-compose build

    - name: Run ruby 2.6
      run: docker-compose run ruby-2.6

    - name: Run ruby 2.7
      run: docker-compose run ruby-2.7

    - name: Run ruby 3.0
      run: docker-compose run ruby-3.0

    - 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@v3

    - 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

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
net-ssh-7.3.0 .github/workflows/ci-with-docker.yml
net-ssh-7.3.0.rc1 .github/workflows/ci-with-docker.yml
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/net-ssh-7.2.1/.github/workflows/ci-with-docker.yml
net-ssh-7.2.3 .github/workflows/ci-with-docker.yml
net-ssh-7.2.2.rc1 .github/workflows/ci-with-docker.yml
net-ssh-7.2.1 .github/workflows/ci-with-docker.yml
net-ssh-7.2.1.rc1 .github/workflows/ci-with-docker.yml
net-ssh-7.2.0 .github/workflows/ci-with-docker.yml
net-ssh-7.2.0.rc1 .github/workflows/ci-with-docker.yml
net-ssh-7.2.0.beta1 .github/workflows/ci-with-docker.yml
net-ssh-7.1.0 .github/workflows/ci-with-docker.yml
net-ssh-7.1.0.beta2 .github/workflows/ci-with-docker.yml
net-ssh-7.1.0.beta1 .github/workflows/ci-with-docker.yml