Skip to content

Support dry-configurable 0.10 - 0.12 #8

Support dry-configurable 0.10 - 0.12

Support dry-configurable 0.10 - 0.12 #8

Workflow file for this run

name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
gemfile:
- 'Gemfile.dry-config-0.12'
- 'Gemfile.dry-config-0.14'
ENV:

Check failure on line 24 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Ruby

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 24, Col: 5): Unexpected value 'ENV'
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
RUBY_VERSION: ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run linter
run: bundle exec rubocop
- name: Run test
run: bundle exec rspec