Skip to content

Commit

Permalink
Merge pull request #17 from DeterminateSystems/source-binary
Browse files Browse the repository at this point in the history
Enable source-binary parameter
  • Loading branch information
lucperkins authored May 22, 2024
2 parents d87f573 + db2913f commit 8ebc7a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
branches: [main]

jobs:
check-dist-up-to-date:
name: Check the dist/ folder is up to date
build-check-typescript:
name: Build and check the TypeScript Action
runs-on: ubuntu-22.04
permissions:
contents: read
Expand All @@ -26,6 +26,7 @@ jobs:

run-x86_64-linux-clean:
name: Run x86_64 Linux (clean)
needs: build-check-typescript
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand All @@ -36,6 +37,7 @@ jobs:

run-x86_64-linux-dirty:
name: Run x86_64 Linux (dirty)
needs: build-check-typescript
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand All @@ -47,6 +49,7 @@ jobs:

run-x86_64-darwin-clean:
name: Run x86_64 Darwin (clean)
needs: build-check-typescript
runs-on: macos-12
steps:
- uses: actions/checkout@v4
Expand All @@ -57,6 +60,7 @@ jobs:

run-x86_64-darwin-dirty:
name: Run x86_64 Darwin (dirty)
needs: build-check-typescript
runs-on: macos-12
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ inputs:
Anonymously report the number of issues detected by the Nix Flake Checker. This reporting helps
measure (and thereby improve) the effectiveness of the checker. Set to `false` to disable.
default: true
source-binary:
description: |
Run a version of flake-checker from somewhere already on disk. Intended only for testing the Action.
required: false
_internal-strict-mode:
description: Whether to fail when any errors are thrown. Used only to test the Action; do not set this in your own workflows.
default: false
Expand Down

0 comments on commit 8ebc7a4

Please sign in to comment.