Skip to content

Merge pull request #16 from TraceMachina/feat/build-attribution #77

Merge pull request #16 from TraceMachina/feat/build-attribution

Merge pull request #16 from TraceMachina/feat/build-attribution #77

Workflow file for this run

# This workflow will lint the entire codebase using the
# `super-linter/super-linter` action.
#
# For more information, see the super-linter repository:
# https://github.com/super-linter/super-linter
name: Lint Codebase
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
packages: read
statuses: write
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-24.04
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Prepare Worker
uses: ./.github/actions/prepare-nix
- name: Run pre-commit
run: nix develop --impure --command bash -c "pre-commit run --all-files"