mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-02 03:28:28 -04:00
235f0668b8
commit990d86d481Author: bbedward <bbedward@gmail.com> Date: Sat Jul 18 10:43:22 2026 -0400 flake: update-common commit526cb157fdAuthor: bbedward <bbedward@gmail.com> Date: Thu Jul 16 17:56:40 2026 -0400 i18n: update sync scrirpt for dank-qml-common commit92ba96d9f9Author: bbedward <bbedward@gmail.com> Date: Thu Jul 16 09:24:37 2026 -0400 qs: integrate with dank-qml-common
32 lines
818 B
YAML
32 lines
818 B
YAML
name: Pre-commit Checks
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [master, main, "stable-*"]
|
|
jobs:
|
|
pre-commit-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install flatpak
|
|
run: sudo apt update && sudo apt install -y flatpak
|
|
|
|
- name: Add flathub
|
|
run: sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
- name: Add a flatpak that mutagen could support
|
|
run: sudo flatpak install -y org.freedesktop.Platform/x86_64/24.08 app.zen_browser.zen
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: core/go.mod
|
|
|
|
- name: run pre-commit hooks
|
|
uses: j178/prek-action@v2
|