Skip to content

v0.5.0

v0.5.0 #25

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ubuntu-latest
services:
postgres:
env:
POSTGRES_HOST_AUTH_METHOD: trust
image: postgres:14-alpine
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Ruby and Bundle Install
uses: eregon/use-ruby-action@v1
with:
bundler-cache: true
- name: Spec
env:
CI: true
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
COVERAGE: true
MINIMUM_COVERAGE: ${{ secrets.MINIMUM_COVERAGE }}
run: bundle exec rspec