Sha256: 069592cfc5615a771ab98e7557c6c9876141eaa09069ac1b278a567c7d7222cf
Contents?: true
Size: 518 Bytes
Versions: 2
Compression:
Stored size: 518 Bytes
Contents
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest name: Ruby ${{ matrix.version }} strategy: matrix: version: [3.0, 3.1, 3.2, 3.3] steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.version }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.version }} bundler-cache: true - name: Run Tests run: | bundle exec rake test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
smart_todo-1.9.0 | .github/workflows/build.yml |
smart_todo-1.8.0 | .github/workflows/build.yml |