Sha256: 692ae5dcc1b27c25003c1942a2947534c869f6c36e11bc9d5061dde8967a016e
Contents?: true
Size: 675 Bytes
Versions: 4
Compression:
Stored size: 675 Bytes
Contents
name: test on: push: branches: - master pull_request: types: - opened - synchronize - reopened schedule: - cron: "00 15 * * *" # 7:00 PST (-8), 8:00 PDT (-7) jobs: test: runs-on: ubuntu-latest container: ${{ matrix.ruby }} strategy: fail-fast: false matrix: ruby: - ruby:2.5 - ruby:2.6 - ruby:2.7 # TODO: add jruby and truffleruby steps: - uses: actions/checkout@v2 - run: apt-get update && apt-get install -y nodejs # For execjs - name: bundle install run: bundle install -j$(nproc) --retry 3 - run: bundle exec rake test
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
hamlit-2.13.2-java | .github/workflows/test.yml |
hamlit-2.13.2 | .github/workflows/test.yml |
hamlit-2.13.1-java | .github/workflows/test.yml |
hamlit-2.13.1 | .github/workflows/test.yml |