Skip to content

bugfix

bugfix #443

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12.4-alpine
env:
POSTGRES_DB: sync_app_cache
POSTGRES_PASSWORD: 2UtcMAAvNuBHPqK9
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v1
- name: Clippy
run: cargo clippy -- -W clippy::pedantic
- name: Outdated
run: |
cargo install cargo-outdated && \
cargo outdated -d2
- name: Unused Deps
run: |
rustup update nightly && \
cargo +nightly install cargo-udeps && \
cargo +nightly udeps
- name: Build
run: cargo build --verbose
- name: Run tests
run: |
./target/debug/sync-app-rust run-migrations && \
cargo test --verbose --all && \
cargo install cargo-tarpaulin && \
cargo tarpaulin --verbose --all-features --workspace --out Xml
env:
DATABASE_URL: postgresql://postgres:2UtcMAAvNuBHPqK9@localhost:5432/sync_app_cache
- name: Upload to codecov.io
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml