Skip to content

version bump

version bump #869

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:12.4-alpine
env:
POSTGRES_DB: garmin_summary
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: Install deps
run: sudo apt-get update && sudo apt-get install libpq-dev && rustup update
- 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 && \
target/debug/garmin-rust-cli run-migrations
env:
PGURL: postgresql://postgres:2UtcMAAvNuBHPqK9@localhost:5432/garmin_summary
- name: Run tests / create coverage report
run: |
cargo test --verbose --all
cargo install cargo-tarpaulin --version 0.18.0-alpha3 && \
cargo tarpaulin --verbose --all-features --workspace --out Xml --avoid-cfg-tarpaulin
env:
PGURL: postgresql://postgres:2UtcMAAvNuBHPqK9@localhost:5432/garmin_summary
- 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
- name: Outdated dependencies
run: |
cargo update && cargo outdated -d2