# Auto-generated by Cimas: Do not edit it manually! # See https://github.com/metanorma/cimas name: rake on: push: branches: [ master, main ] tags: [ v* ] pull_request: jobs: rake: name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }} runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: ruby: [ '3.0', '2.7', '2.6' ] os: [ ubuntu-latest, windows-latest, macos-latest ] experimental: [ false ] steps: - uses: actions/checkout@v2 with: submodules: true - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake