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

29 lines
441 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:56:35 +00:00
&paths 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:56:35 +00:00
*paths
2021-07-10 00:11:43 +00:00
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose