Skip to content

docs: :modify ech_config & :ech_hpke_cipher_suites #143

docs: :modify ech_config & :ech_hpke_cipher_suites

docs: :modify ech_config & :ech_hpke_cipher_suites #143

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7.x', '3.0.x', '3.1.x']
steps:
- uses: actions/checkout@v3
- uses: docker://thekuwayama/openssl:latest
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem --version
gem install bundler
bundle --version
bundle install
- name: Run rubocop
run: bundle exec rake rubocop
- name: Run rspec
run: bundle exec rake spec
- name: Run interop client
run: bundle exec rake interop:client
- name: Run interop server
run: bundle exec rake interop:server