2021-10-29 20:27:34 +05:30
|
|
|
name: Coverage
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2022-08-15 19:44:38 +05:30
|
|
|
- "*"
|
|
|
|
- '!gh-pages'
|
2021-10-29 20:27:34 +05:30
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
version:
|
|
|
|
- stable
|
|
|
|
|
|
|
|
name: ${{ matrix.version }} - x86_64-unknown-linux-gnu
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2022-09-10 19:29:22 +05:30
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: password
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: postgres
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
|
2021-10-29 20:27:34 +05:30
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: ⚡ Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2022-09-16 17:42:27 +05:30
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: "16.x"
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: "16.x"
|
|
|
|
|
2021-10-29 20:27:34 +05:30
|
|
|
- name: Install ${{ matrix.version }}
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.version }}-x86_64-unknown-linux-gnu
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
2022-11-10 16:30:02 +05:30
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: "16.x"
|
|
|
|
|
|
|
|
- name: download deps
|
|
|
|
run: make dev-env
|
|
|
|
|
2022-09-10 19:29:22 +05:30
|
|
|
- name: Apply migrations
|
|
|
|
run: make migrate
|
|
|
|
env:
|
|
|
|
DATABASE_URL: "postgres://postgres:password@localhost:5432/postgres"
|
|
|
|
|
2021-10-29 20:27:34 +05:30
|
|
|
- name: Generate coverage file
|
|
|
|
if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
|
|
uses: actions-rs/tarpaulin@v0.1
|
|
|
|
with:
|
|
|
|
args: '-t 1200'
|
|
|
|
env:
|
2022-09-10 19:29:22 +05:30
|
|
|
DATABASE_URL: "postgres://postgres:password@localhost:5432/postgres"
|
2021-10-29 20:27:34 +05:30
|
|
|
# GIT_HASH is dummy value. I guess build.rs is skipped in tarpaulin
|
|
|
|
# execution so this value is required for preventing meta tests from
|
|
|
|
# panicking
|
|
|
|
GIT_HASH: 8e77345f1597e40c2e266cb4e6dee74888918a61
|
|
|
|
|
|
|
|
- name: Upload to Codecov
|
|
|
|
if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
|
|
uses: codecov/codecov-action@v1
|