moss: Prime vfs cache on boot via systemd service #166
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Package Lint | |
on: | |
pull_request: | |
paths-ignore: | |
- 'tools/**' | |
- 'releases/**' | |
- 'typos/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: | | |
sudo apt-get update | |
sudo apt-get install python3-ruamel.yaml | |
tools/CI/package_checks.py --base=origin/${{ github.event.pull_request.base.ref }} |