Sha256: 415b8c1af192cb186a96dfd3fd4ca2e5e47b2a851d2e71f69b50f297f9c24799
Contents?: true
Size: 620 Bytes
Versions: 1
Compression:
Stored size: 620 Bytes
Contents
# see also https://github.com/whitequark/parser/blob/master/.github/workflows/test.yml name: Rake on: [push] jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest] ruby: ["3.0", "3.2", 3.3, head] test_command: ["bundle exec rake test"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Bundle install run: | bundle config path /home/runner/bundle bundle install bundle update - run: ${{ matrix.test_command }}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
doit-1.0.7 | .github/workflows/rake.yml |