[OPS-1384] Introduce NixOS VM tests #355
Workflow file for this run
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 flake check | |
on: pull_request | |
jobs: | |
check: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: deploy-rs | |
run: nix build -L .#checks.x86_64-linux.deploy-rs | |
- name: Deploy with client-side build | |
run: nix build -L .#checks.x86_64-linux.local-build | |
- name: Deploy with server-side build | |
run: nix build -L .#checks.x86_64-linux.remote-build | |
- name: Deploy user profile | |
run: nix build -L .#checks.x86_64-linux.profile |