1
0
Fork 0
mirror of synced 2024-05-19 03:43:00 +12:00
czkawka/.github/workflows/quality.yml

45 lines
977 B
YAML
Raw Normal View History

2020-10-08 00:17:30 +13:00
name: Quality
2021-11-20 21:49:03 +13:00
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 2'
2020-10-08 00:17:30 +13:00
env:
CARGO_TERM_COLOR: always
jobs:
quality:
runs-on: ubuntu-22.04
2020-10-08 00:17:30 +13:00
steps:
- uses: actions/checkout@v3
2020-10-08 00:17:30 +13:00
- uses: actions/cache@v3
2020-10-08 00:17:30 +13:00
with:
path: |
target
key: quality-${{github.ref}}-${{github.sha}}
restore-keys: |
quality-cli-${{github.ref}}-${{github.sha}}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- name: Install Gtk 4
run: sudo apt-get update; sudo apt install -y libgtk-4-dev libheif-dev -y
2020-10-08 00:17:30 +13:00
- name: Check the format
run: cargo fmt --all -- --check
# type complexity must be ignored because we use huge templates for queries
- name: Run clippy
run: >
cargo clippy
--all-targets
--all-features
--
-D warnings