mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00
29 lines
650 B
YAML
29 lines
650 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
- uses: enarx/spdx@master
|
|
with:
|
|
licenses: Apache-2.0 BSD-3-Clause MIT
|
|
|
|
taplo:
|
|
name: taplo
|
|
runs-on: ubuntu-latest
|
|
container: tamasfe/taplo:latest
|
|
steps:
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
- run: taplo fmt --check
|