Fix coverage in build script

This commit is contained in:
Hakan Ensari 2020-01-08 12:04:53 +00:00
parent 1099346973
commit efeecc4057
2 changed files with 38 additions and 54 deletions

View File

@ -1,54 +0,0 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: ruby:2.7.0
services:
postgres:
image: postgres:12
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v1
- name: Set up reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Install dependencies
run: |
apt-get -yqq install libpq-dev
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake
env:
APP_ENV: test
DATABASE_URL: postgres://postgres@postgres/postgres
- name: Publish image
uses: elgohr/Publish-Docker-Github-Action@a72734e
if: github.event_name == 'push' && success()
with:
name: hakanensari/frankfurter
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true
- name: Report to Code Climate
continue-on-error: true
run: GIT_BRANCH="${GITHUB_REF/refs\/heads\//}" ./cc-test-reporter after-build --exit-code $?
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_COMMIT_SHA: ${{ github.sha }}

38
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,38 @@
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: ruby:2.7
services:
postgres:
image: postgres:12
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- run: gem install bundler
- run: bundle install --jobs 4 --retry 3
- uses: paambaati/codeclimate-action@v2.4.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
DATABASE_URL: postgres://postgres@postgres/postgres
with:
coverageCommand: bundle exec rake
publish:
needs: build
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: elgohr/Publish-Docker-Github-Action@2.11
with:
name: hakanensari/frankfurter
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true