Sha256: 0c4bd1e81b4659e41f4e3dfe50b3732c96bb71d57f866a96d64ddee4c9b4f139
Contents?: true
Size: 933 Bytes
Versions: 2
Compression:
Stored size: 933 Bytes
Contents
name: CI on: - push env: BUNDLE_PATH: vendor/bundle jobs: test: name: Tests runs-on: ubuntu-22.04 if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository strategy: matrix: ruby: - '3.1' services: postgres: image: postgres env: POSTGRES_PASSWORD: postgres options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 ports: - 5432:5432 steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: "Tests and Lint" run: bundle exec rake env: PGHOST: localhost PGUSER: postgres PGPASSWORD: postgres TESTOPTS: "--fail-fast"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gouda-0.1.14 | .github/workflows/ci.yml |
gouda-0.1.13 | .github/workflows/ci.yml |