Skip to content

Commit

Permalink
inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed Sep 5, 2024
0 parents commit 40b1cdb
Show file tree
Hide file tree
Showing 19 changed files with 2,047 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: check
on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, macos-14]
steps:
- uses: actions/checkout@main
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main

- name: System Info
run: |
uname -a
nix --version
- name: Run flake check
run: nix flake check -L --show-trace
11 changes: 11 additions & 0 deletions .github/workflows/pre-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: pre-check
on:
pull_request:
branches: [main]

jobs:
check-signed-commits:
runs-on: ubuntu-latest
steps:
- name: check signed commits
uses: 1Password/check-signed-commits-action@v1
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
result
.direnv
.envrc
target
.tmp
.nixos-test-history
Loading

0 comments on commit 40b1cdb

Please sign in to comment.