Test to see if package builds with Nix #2
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 to see if package builds with Nix | |
run-name: Test to see if package builds with Nix | |
on: | |
push | |
jobs: | |
Update-JSON-Data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setting up Checkout | |
uses: actions/checkout@v3 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Nix | |
uses: cachix/install-nix-action@v18 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Try to build package | |
run: | | |
nix build |