Skip to content

test arch container #157

test arch container

test arch container #157

Workflow file for this run

name: pre-commit
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
container:
image: archlinux
strategy:
fail-fast: false
matrix:
hook: [ check-toml,
check-yaml,
check-merge-conflict,
check-case-conflict,
detect-private-key,
cspell,
typos,
fmt,
clippy,
cargo-test,
verify_icon_files
]
steps:
- name: Get required packages
run: pacman --noconfirm --noprogressbar -Syu clang git libpipewire libpulse lm_sensors notmuch openssl pre-commit rust
- uses: actions/checkout@v4
- name: pre-commit ${{ matrix.hook }}
run: pre-commit run ${{ matrix.hook }} --all-files