-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (55 loc) · 1.67 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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: movie_queue
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 --workspace && \
./target/debug/movie-queue-cli run-migrations
env:
PGURL: postgresql://postgres:2UtcMAAvNuBHPqK9@localhost:5432/movie_queue
MOVIE_DIRS: /tmp
MUSIC_DIRS: /tmp
- name: Run tests
run: |
cargo test --verbose --workspace && \
cargo install cargo-tarpaulin --version 0.18.0-alpha3 && \
cargo tarpaulin --verbose --all-features --workspace --out Xml --avoid-cfg-tarpaulin
- 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