mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
23 lines
672 B
YAML
23 lines
672 B
YAML
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cachix/install-nix-action@v25
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- name: Free Disk Space
|
|
uses: jlumbroso/free-disk-space@main
|
|
with:
|
|
tool-cache: true
|
|
- uses: DeterminateSystems/magic-nix-cache-action@v7
|
|
- uses: cachix/cachix-action@v15
|
|
with:
|
|
name: callumio-public
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
pushFilter: '(nerdfonts)'
|
|
extraPullNames: nix-community, om
|
|
- run: nix run github:juspay/omnix -- ci run "."
|