Skip to content

Enable auto-formatting subgroups in flake names #444

Enable auto-formatting subgroups in flake names

Enable auto-formatting subgroups in flake names #444

Workflow file for this run

name: Build artifacts
on:
workflow_dispatch:
workflow_call:
pull_request:
push:
branches: [main]
jobs:
build-artifacts-X64-Linux:
runs-on: UbuntuLatest32Cores128G
permissions:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: DeterminateSystems/flake-checker-action@main
- name: "Nix formatting"
run: git ls-files '*.nix' | nix develop --command xargs nixpkgs-fmt --check
- name: "Rust formatting"
run: nix develop --command cargo fmt --check
- name: "Clippy"
run: nix develop --command cargo clippy --all-targets --all-features -- -Dwarnings
- name: "Nix Flake Check"
run: nix flake check --print-build-logs
- name: Build package
run: "nix build .# -L --fallback"
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
# Artifact name
name: flakehub-push-X64-Linux
path: result/bin/flakehub-push
retention-days: 1