feat(pkgs/coc-zk): update it #751
This file contains 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: "Test nur build" | |
on: | |
pull_request: | |
push: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
# Set this to notify the global nur package registry that changes are | |
# available. | |
# | |
# The repo name as used in | |
# https://github.com/nix-community/NUR/blob/master/repos.json | |
nurRepo: | |
- wrvsrx | |
# Set this to cache your build results in cachix for faster builds | |
# in CI and for everyone who uses your cache. | |
# | |
# Format: Your cachix cache host name without the ".cachix.org" suffix. | |
# Example: mycache (for mycache.cachix.org) | |
# | |
# For this to work, you also need to set the CACHIX_SIGNING_KEY or | |
# CACHIX_AUTH_TOKEN secret in your repository secrets settings in | |
# Github found at | |
# https://github.com/<your_githubname>/nur-packages/settings/secrets | |
# cachixName: | |
# - <YOUR_CACHIX_NAME> | |
# nixPath: | |
# - nixpkgs=channel:nixos-unstable | |
# - nixpkgs=channel:nixpkgs-unstable | |
# - nixpkgs=channel:nixos-22.11 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@V27 | |
with: | |
# nix_path: "${{ matrix.nixPath }}" | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Show flake metadata | |
run: nix flake metadata | |
- name: Show flake information | |
run: nix flake show --allow-import-from-derivation | |
# comment this procedure since nix flake check --no-build doesn't work when IFD is used | |
# - name: Check evaluation | |
# run: nix flake check --no-build | |
- name: Build nix packages | |
run: nix flake check -v |