Sha256: 64b6f6000bb0cb06128bc71ef69f1890c36d2deea055943dd0684c367050fc2f
Contents?: true
Size: 787 Bytes
Versions: 2
Compression:
Stored size: 787 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.3] test_command: ["bundle exec rake"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby_version }} # bundler-cache: true # - name: Build and test with Rake # run: bundle exec rake - name: Bundle install run: | bundle config path /home/runner/bundle bundle install bundle update - name: test with Rake run: ${{ matrix.test_command }}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cuco-0.1.1 | .github/workflows/rake.yml |
cuco-0.1.0 | .github/workflows/rake.yml |