Bump clap_mangen from 0.2.12 to 0.2.15 #50
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: Nix | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build Nix targets | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v3 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: giodamelio | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build default package | |
run: nix build | |
- name: Actually run the thing! | |
run: ls -l | nix run |