feat(apps): added teamviewer configuration #459
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: Check flake repository | |
| on: | |
| repository_dispatch: | |
| types: [create-pull-request] | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build Nix targets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - uses: DeterminateSystems/nix-installer-action@v22 | |
| - name: Check Nix flake inputs | |
| uses: DeterminateSystems/flake-checker-action@v12 | |
| with: | |
| send-statistics: false | |
| fail-mode: true | |
| - name: Check repository | |
| run: nix flake check --extra-experimental-features pipe-operators |