Skip to content

Commit d991dd7

Browse files
committed
add github actions
1 parent d45c4ca commit d991dd7

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/checks.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Checks"
2+
on:
3+
pull_request:
4+
push:
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: cachix/install-nix-action@v31
11+
with:
12+
github_access_token: ${{ secrets.GITHUB_TOKEN }}
13+
- run: nix flake check

flake.nix

+3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
]
6363
++ mcp-server-tools
6464
++ (with pkgs; [
65+
# For running github action workflows locally
66+
act
67+
6568
# For autogenerating nix evaluations for MCP server tools
6669
node2nix
6770

0 commit comments

Comments
 (0)