summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSomeoneSerge <else@someonex.net>2024-06-27 20:38:45 +0000
committerSomeoneSerge <else@someonex.net>2024-06-27 20:38:45 +0000
commit424cc0634ecbb6cdf7cd5ea6c615b82c47dfb34b (patch)
treead8fb4332afd382497e75e97e0a4a1777124ab39 /.github
parentcc02eba1d357dde0132593649c67a194750fe37d (diff)
github actions: init
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml6
-rw-r--r--.github/workflows/build.yml24
2 files changed, 30 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..5ace460
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,6 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..4ae65c3
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,24 @@
+name: "nix-build"
+on:
+ pull_request_target:
+ branches:
+ - 'master'
+ push:
+ branches:
+ - 'master'
+ workflow_dispatch:
+jobs:
+ nix-build:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ ubuntu-latest, macos-latest ]
+ runs-on: ${{ matrix.os }}
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ - name: Install Nix
+ uses: DeterminateSystems/nix-installer-action@v12
+ - uses: DeterminateSystems/magic-nix-cache-action@v7
+ - name: Build some-pkgs
+ run: nix run github:Mic92/nix-fast-build -- --skip-cached --no-nom --flake ".#packages"