Skip to content

Commit

Permalink
feat(ci): add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gekoke committed May 15, 2024
1 parent 48daaa5 commit 93c81ac
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"

15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: ci

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: DeterminateSystems/nix-installer-action@v11
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build package
run: nix build -L

22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ Display file icons in Magit!

# Installation

This package is not yet in any package archives.

To install, fetch the source and
This package is not yet in any package archives. To install, you need to fetch the source.

For example, with [straight.el](https://github.com/radian-software/straight.el):

Expand All @@ -27,5 +25,21 @@ For example, with [straight.el](https://github.com/radian-software/straight.el):
(magit-file-icons-mode 1))
```

# Usage
## Nix

```
└───packages
├───aarch64-darwin
│ ├───default: package 'emacs-magit-file-icons-v0.0.1'
│ └───magit-file-icons: package 'emacs-magit-file-icons-v0.0.1'
├───aarch64-linux
│ ├───default: package 'emacs-magit-file-icons-v0.0.1'
│ └───magit-file-icons: package 'emacs-magit-file-icons-v0.0.1'
├───x86_64-darwin
│ ├───default: package 'emacs-magit-file-icons-v0.0.1'
│ └───magit-file-icons: package 'emacs-magit-file-icons-v0.0.1'
└───x86_64-linux
├───default: package 'emacs-magit-file-icons-v0.0.1'
└───magit-file-icons: package 'emacs-magit-file-icons-v0.0.1'
```

0 comments on commit 93c81ac

Please sign in to comment.