mangadex-home-rs/.github/workflows/build_and_test.yml

41 lines
799 B
YAML
Raw Normal View History

2021-07-10 00:12:58 +00:00
name: Build and test
2021-07-10 00:11:43 +00:00
on:
push:
branches: [ master ]
2021-07-10 00:59:23 +00:00
paths-ignore:
- "docs/**"
- "settings.sample.yaml"
- "README.md"
- "LICENSE"
2021-07-10 00:11:43 +00:00
pull_request:
branches: [ master ]
2021-07-10 00:59:23 +00:00
paths-ignore:
- "docs/**"
- "settings.sample.yaml"
- "README.md"
- "LICENSE"
2021-07-10 00:11:43 +00:00
env:
CARGO_TERM_COLOR: always
jobs:
2021-07-10 01:25:08 +00: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-10 00:11:43 +00:00
build:
runs-on: ubuntu-latest
steps:
2021-07-10 00:59:23 +00:00
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose