-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit renames the project as well as adds github actions CI
- Loading branch information
Showing
37 changed files
with
160 additions
and
533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
watch_file devenv.nix | ||
watch_file devenv.yaml | ||
watch_file devenv.lock | ||
eval "$(devenv print-dev-env)" | ||
use flake |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cachix/install-nix-action@v23 | ||
- uses: cachix/cachix-action@v12 | ||
with: | ||
name: pinkwah | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
|
||
- name: Build brief-cli | ||
run: nix build .#brief-cli | ||
|
||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: brief-cli.zip | ||
path: result/bin/brief-cli |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# Generated by scripts | ||
/target/ | ||
/tmp/ | ||
/vendor/ | ||
target/ | ||
tmp/ | ||
vendor/ | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# Example nix directory | ||
/.nix/ | ||
|
||
# Devenv | ||
.devenv* | ||
devenv.local.nix | ||
# Direnv | ||
/.direnv/ | ||
|
||
# Nix build | ||
result |
Oops, something went wrong.