mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
28 lines
589 B
YAML
28 lines
589 B
YAML
name: Pentoo Visibility Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "3 * * * *"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
pentoo-visibility-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
-
|
|
name: List added files
|
|
run: git diff-tree --no-commit-id --name-only -r ${{ github.sha }}
|
|
-
|
|
name: Visibility Check
|
|
run: |
|
|
sudo docker build --progress=plain . -f scripts/qa/Dockerfile
|