build(deps): bump nixpkgs from 4206c4c to 4c1018d
#202
Workflow file for this run
This file contains hidden or 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
| name: check-example | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: | | |
| access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
| - name: Build example | |
| working-directory: example | |
| run: | | |
| nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs | |
| nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager | |
| nix-channel --update | |
| nix-shell '<home-manager>' -A install | |
| make |