Skip to content

chore(deps): update golangci/golangci-lint-action action to v6 (#24) #44

chore(deps): update golangci/golangci-lint-action action to v6 (#24)

chore(deps): update golangci/golangci-lint-action action to v6 (#24) #44

Workflow file for this run

---
name: Flake Check & Build
on:
push:
branches: [main]
pull_request:
env:
CACHIX_BINARY_CACHE: altf4llc-os
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v25
with:
enable_kvm: true
- uses: cachix/cachix-action@v14
with:
authToken: ${{ secrets.ALTF4LLC_CACHIX_AUTH_TOKEN }}
name: ${{ env.CACHIX_BINARY_CACHE }}
- uses: actions/checkout@v4
- run: nix develop -c just check
build:
needs:
- check
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v25
with:
enable_kvm: true
- uses: cachix/cachix-action@v14
with:
authToken: ${{ secrets.ALTF4LLC_CACHIX_AUTH_TOKEN }}
name: ${{ env.CACHIX_BINARY_CACHE }}
- uses: actions/checkout@v4
- run: nix develop -c just build