9999d33b51
updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
634 B
YAML
30 lines
634 B
YAML
name: Validate sources
|
|
# Per CONTRIBUTING.md, we do not accept unofficial ports. This enforces
|
|
# that policy and ensures all sources are only from the official GitHub org
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.sources/**'
|
|
pull_request:
|
|
paths:
|
|
- '.sources/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
name: Check for external repositories
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@V27
|
|
|
|
- name: Run check
|
|
run: |
|
|
set -e
|
|
nix eval --file ./.github/checkSources.nix
|