fix: Make Expr always produce a single output #109
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: ci | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| nix: | |
| permissions: | |
| id-token: "write" | |
| contents: "read" | |
| runs-on: ubuntu-latest | |
| env: | |
| RUSTFLAGS: "-D warnings" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - command: develop -c cargo check --locked --all | |
| - command: develop -c cargo doc --all-features --locked --no-deps | |
| - command: develop -c cargo fmt --all -- --check | |
| - command: develop -c cargo test --locked --all | |
| - command: develop -c cargo test --no-default-features --locked --all | |
| - command: develop -c cargo test --all-features --locked --all | |
| - command: fmt -- --ci | |
| - command: flake check --all-systems --no-update-lock-file | |
| - command: build --print-build-logs --no-update-lock-file .#gantz-website | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@v13 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: nix ${{ matrix.command }} | |
| cargo-publish: | |
| needs: nix | |
| permissions: | |
| id-token: "write" | |
| contents: "read" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@v13 | |
| - uses: nicknovitski/nix-develop@v1 | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: katyo/publish-crates@v2 | |
| id: publish-crates | |
| with: | |
| registry-token: ${{ secrets.CRATESIO_TOKEN }} | |
| dry-run: ${{ github.event_name != 'push' }} | |
| ignore-unpublished-changes: true | |
| - name: List published crates | |
| if: ${{ steps.publish-crates.outputs.published != '' }} | |
| run: | | |
| LIST="${{ join(fromJSON(steps.publish-crates.outputs.published).*.name, ', ') }}" | |
| echo "Published crates: $LIST" | |
| deploy-gantz-website: | |
| needs: nix | |
| if: github.ref == 'refs/heads/master' | |
| permissions: | |
| pages: write | |
| id-token: write | |
| contents: read | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@v13 | |
| - run: nix build --print-build-logs .#gantz-website | |
| - uses: actions/configure-pages@v4 | |
| - uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: 'result' | |
| - id: deployment | |
| uses: actions/deploy-pages@v4 |