Skip to content

Commit

Permalink
feat(workflows): add evals
Browse files Browse the repository at this point in the history
  • Loading branch information
ryand56 committed Sep 16, 2024
1 parent 7d5f391 commit 51f2800
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
- uses: "actions/checkout@v4"
- uses: "cachix/install-nix-action@V28"
with:
nix_path: nixpkgs=channel:nixos-unstable
nix_path: nixpkgs=channel:nixpkgs-unstable
17 changes: 17 additions & 0 deletions .github/workflows/eval-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Eval (Checks)"

on:
push:
pull_request_target:

jobs:
wrangler:
name: wrangler
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "cachix/install-nix-action@V28"
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
- name: Build
run: nix build .#checks.x86_64-linux.wrangler
17 changes: 17 additions & 0 deletions .github/workflows/eval-devshells.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Eval (devShells)"

on:
push:
pull_request_target:

jobs:
wrangler:
name: Build default
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "cachix/install-nix-action@V28"
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
- name: Build
run: nix build .#devShells.x86_64-linux.default
17 changes: 17 additions & 0 deletions .github/workflows/eval-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Eval (Packages)"

on:
push:
pull_request_target:

jobs:
wrangler:
name: Build wrangler
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "cachix/install-nix-action@V28"
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
- name: Build
run: nix build .#packages.x86_64-linux.wrangler

0 comments on commit 51f2800

Please sign in to comment.