Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gewenyu99 committed Jul 22, 2024
1 parent 6b5a94c commit 66d6794
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
branches:
- main
- develop
pull_request:

# cancel in-progress runs on new commits to same PR (gitub.event.number)
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: trunk-io/trunk-action@v1
- with: post-annotations: true # only for fork PRs

0 comments on commit 66d6794

Please sign in to comment.