Skip to content

Update filename example in initial Steepfile #2086

Update filename example in initial Steepfile

Update filename example in initial Steepfile #2086

Workflow file for this run

name: Run test on container
on:
push:
branches:
- master
pull_request: {}
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ['3.1', '3.2', '3.3']
task:
- test
- test:output
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: none
- name: Run test
run: |
git config --global --add safe.directory /__w/steep/steep
ruby -v
gem install bundler
bin/setup
bundle exec rake ${{matrix.task}}