mirror of
https://github.com/getsolus/packages.git
synced 2025-04-25 20:30:37 +03:00
21 lines
541 B
YAML
21 lines
541 B
YAML
---
|
|
name: Package Lint
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- packages/**
|
|
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
|
|
common/CI/package_checks.py --base=origin/${{ github.event.pull_request.base.ref }}
|