Fix to disable uv sync when in nix shell #241
Workflow file for this run
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: "build" | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python: [python310, python311, python312, python313, python314] | |
| sphinx: [8.2.3, 8.1.3, 8.0.2, 7.4.7] | |
| exclude: | |
| - python: python310 | |
| sphinx: 8.2.3 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: cachix/install-nix-action@v30 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - uses: cachix/cachix-action@v15 | |
| with: | |
| name: datakurre | |
| signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - run: nix profile install nixpkgs#devenv | |
| - run: LC_ALL=en_US.UTF-8 make devenv-test devenv-coverage devenv-docs PYTHON=${{ matrix.python }} SPHINX=${{ matrix.sphinx }} | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| debug: true | |
| format: cobertura | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |