ci: Add paths-ignore for www directory to Go, Nix, and Rust CI wo…
#423
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: Nix | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'www/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'www/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@7be5dee1421f63d07e71ce6e0a9f8a4b07c2a487 # v31.6.1 | |
| - name: Nix version | |
| run: nix --version | |
| - name: Nix build | |
| run: nix build -L .#packages.x86_64-linux.process-compose |