refactor: pretty clean and very neat codebase, without shitty monorepo #1
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 CI | |
| on: [push, pull_request] | |
| jobs: | |
| test-flake: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| - name: Check up flake configuration | |
| run: nix flake check --all-systems --show-trace | |
| test-project: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| - name: Build project with Nix | |
| run: nix build |