mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
23 lines
456 B
YAML
23 lines
456 B
YAML
name: Run Trunk Check
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
trunk_check:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
checks: write # For trunk to post annotations
|
|
contents: read # For repo checkout
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.3.0
|
|
- name: Trunk Check
|
|
uses: trunk-io/trunk-action@v1.2.4
|