Skip to content

feat: Allow package ensure parameter to be configured #21

feat: Allow package ensure parameter to be configured

feat: Allow package ensure parameter to be configured #21

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7']
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get install libcurl4-openssl-dev
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
cache-version: 1
- name: Run static tests
run: bundle exec rake check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop syntax lint metadata_lint
- name: Run spec tests
run: bundle exec rake parallel_spec
- name: Run integration tests
run: bundle exec rake integration_test
timeout-minutes: 40