mittere: follow redirect #19
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
| # SPDX-FileCopyrightText: 2025 Tomodachi94 | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Continuous integration | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| ci: | |
| name: Continuous integration | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| accept-flake-config = true | |
| - run: "nix develop .#" | |
| name: "Prefetch CI dependencies" | |
| - run: nix develop .# --command just ci | |
| name: Run `just ci` |