review #2
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: review | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
pr: | ||
description: "Pull Request Number" | ||
required: true | ||
type: number | ||
nixpkgs-review: | ||
description: "nixpkgs-review flake" | ||
required: true | ||
type: string | ||
default: github:Mic92/nixpkgs-review | ||
jobs: | ||
review: | ||
strategy: | ||
matrix: | ||
system: | ||
- x86_64-linux | ||
- aarch64-linux | ||
- x86_64-darwin | ||
- aarch64-darwin | ||
runs-on: ${{ \ | ||
Check failure on line 25 in .github/workflows/review.yml
|
||
(matrix.system == "x86_64-linux" && "ubuntu-latest") \ | ||
|| (matrix.system == "aarch64-linux" && "ubuntu-24.04-arm") \ | ||
|| (matrix.system == "x86_64-darwin" && "macos-13") \ | ||
|| (matrix.system == "aarch64-darwin" && "macos-latest") }} | ||
steps: | ||
- uses: DeterminateSystems/nix-installer-action@v16 | ||
- run: nix run ${{ inputs.nixpkgs-review }} -- pr ${{ inputs.pr }} --no-shell | ||
post-result: | ||
runs-on: ubuntu-latest | ||
needs: [review] | ||
steps: | ||
- run: echo test |