2021-07-09 17:12:58 -07:00
|
|
|
name: Build and test
|
2021-07-09 17:11:43 -07:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2021-07-09 17:59:23 -07:00
|
|
|
paths-ignore:
|
|
|
|
- "docs/**"
|
|
|
|
- "settings.sample.yaml"
|
|
|
|
- "README.md"
|
|
|
|
- "LICENSE"
|
2021-07-09 17:11:43 -07:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2021-07-09 17:59:23 -07:00
|
|
|
paths-ignore:
|
|
|
|
- "docs/**"
|
|
|
|
- "settings.sample.yaml"
|
|
|
|
- "README.md"
|
|
|
|
- "LICENSE"
|
2021-07-09 17:11:43 -07:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2021-07-09 18:25:08 -07:00
|
|
|
clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: rustup component add clippy
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
args: --all-features
|
|
|
|
|
2021-07-09 17:11:43 -07:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-07-09 17:59:23 -07:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
|
|
|
run: cargo test --verbose
|
2021-07-11 22:34:37 -07:00
|
|
|
|
|
|
|
sqlx-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install sqlx-cli
|
|
|
|
run: cargo install sqlx-cli
|
|
|
|
- name: Initialize database
|
|
|
|
run: mkdir -p cache && sqlite3 cache/metadata.sqlite < db_queries/init.sql
|
|
|
|
- name: Check sqlx statements
|
|
|
|
run: cargo sqlx prepare --check
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: true
|