Skip to content

Test against SENEC with https #39

Test against SENEC with https

Test against SENEC with https #39

Workflow file for this run

name: Continuous integration
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '3.1', '3.2']
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- name: Lint with RuboCop
run: bundle exec rubocop
- name: Run tests
run: bundle exec rake