mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-03-26 06:27:23 +00:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
# SPDX-FileCopyrightText: 2022 Marko Weltzer
|
|
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
|
|
# SPDX-FileCopyrightText: 2022 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
name: Matrix CI
|
|
|
|
on: [push, pull_request] # yamllint disable-line rule:truthy
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
prek:
|
|
name: Run prek hooks
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker.io/archlinux:base-devel
|
|
|
|
steps:
|
|
# git must be installed before checkout so it does a proper clone
|
|
# (with .git directory) instead of a tarball download.
|
|
- name: Install git
|
|
run: pacman -Sy --noconfirm git
|
|
|
|
- name: Check out
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Restore prek cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: var/prek
|
|
key: arch-prek-v1-${{ hashFiles('.pre-commit-config.yaml') }}
|
|
|
|
- name: Install dependencies
|
|
run: pacman -S --noconfirm --needed just mise python
|
|
|
|
- name: Run prek hooks
|
|
run: |
|
|
# The checkout action sets safe.directory using its own bundled
|
|
# git, which is separate from the pacman-installed git that prek uses.
|
|
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
just prek-run-on-all
|