Skip to content

Commit

Permalink
feat(ci): add flake check
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenhoenle committed Aug 29, 2024
1 parent a451c65 commit 4f03f79
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: run flake check

on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]

jobs:
lints:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v13
- run: nix flake check

0 comments on commit 4f03f79

Please sign in to comment.