mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-20 14:43:56 +02:00
32 lines
750 B
YAML
32 lines
750 B
YAML
name: lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-spdx-headers:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: enarx/spdx@d4020ee98e3101dd487c5184f27c6a6fb4f88709
|
|
with:
|
|
licenses: |-
|
|
Apache-2.0
|
|
BSD-3-Clause
|
|
MIT
|
|
|
|
taplo:
|
|
name: taplo
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: cachix/install-nix-action@v31
|
|
- run: nix run nixpkgs#taplo -- fmt --check
|