Skip to content

Commit

Permalink
+ init
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Nov 4, 2024
0 parents commit 0aba991
Show file tree
Hide file tree
Showing 29 changed files with 4,419 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
40 changes: 40 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Evaluate Flake
on:
pull_request:
branches: ["*"]
push:
branches: ["main"]
jobs:
check:
name: format check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main

- name: flake check
run: |
nix flake check
shell: bash

test:
name: run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main

- name: build vaultix cli
run: |
nix build .#
shell: bash
- name: cargo check
run: |
nix develop -c cargo check
shell: bash
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/target
/result
/secrets
/.direnv
test.json
Loading

0 comments on commit 0aba991

Please sign in to comment.