mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
e6e19ea5a8
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
873 B
YAML
30 lines
873 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@v16
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: nix-community
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
- 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
|