chore: Fix failed to init conductor on copy config at start #45
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install nix | |
| uses: cachix/install-nix-action@v30 | |
| with: | |
| install_url: https://releases.nixos.org/nix/nix-2.26.2/install | |
| - uses: cachix/cachix-action@v15 | |
| with: | |
| name: holochain-ci | |
| - name: Check Nix formatting | |
| run: nix fmt . -- --check | |
| - name: Check Nix flake | |
| run: nix flake check --all-systems |