Sha256: cad09325e38955ddec0274bb074cfaf511e01f55ac693f8b27db976162a1f45a
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
name: Test on: push: branches: - master pull_request: jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3 bundler-cache: true - name: Run rubocop run: bundle exec rubocop rspec: runs-on: ubuntu-latest strategy: matrix: ruby: [3.0, 3.1, 3.2] steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run rspec run: bundle exec rspec release: runs-on: ubuntu-latest environment: release if: github.event_name == 'push' && github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v3 - name: Release Gem uses: skirushkin/publish-rubygems-action@main env: RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}} GIT_EMAIL: stepan.kirushkin@gmail.com GIT_NAME: Stepan Kirushkin
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
memolog-0.5.6 | .github/workflows/test.yml |
memolog-0.5.5 | .github/workflows/test.yml |
memolog-0.5.4 | .github/workflows/test.yml |
memolog-0.5.3 | .github/workflows/test.yml |