[READY] Rename core servers (#1072) #1090
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: ci | |
| on: | |
| pull_request: | |
| push: # This is only run when PRs are merged into master | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| nix_checks: | |
| name: nix checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@main | |
| - run: nix flake check -L --allow-import-from-derivation | |
| # monitor and bind-master uses IFD | |
| nix_verify_scale_network: | |
| name: nix builds | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@main | |
| - run: nix run .#verify-scale-network |