mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01:00
9438e56a7b
2.14 has a bug related to profile locations that breaks nix-env, which in turn breaks cachix. Pin to 2.13 for now. More info at https://github.com/NixOS/nixpkgs/pull/218858#issuecomment-1448758169
31 lines
942 B
YAML
31 lines
942 B
YAML
name: Test
|
|
on:
|
|
pull_request:
|
|
schedule:
|
|
- cron: "30 2 * * *"
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v19
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: nix-community
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- run: |
|
|
if grep -R --exclude stdlib-extended.nix literalExample modules ; then
|
|
echo "Error: literalExample should be replaced by literalExpression" > /dev/stderr
|
|
exit 1
|
|
fi
|
|
- run: nix-build -A docs.jsonModuleMaintainers
|
|
- run: ./format -c
|
|
- run: nix-shell . -A install
|
|
- run: nix-shell --arg enableBig false --pure tests -A run.all
|