Skip to content

Commit 2cfa29c

Browse files
committed
ci(ci): add workflow
1 parent 81de98a commit 2cfa29c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ['**']
6+
paths-ignore: [CHANGELOG.md]
7+
tags-ignore: ['**']
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref_name }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
15+
pre-commit:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: digitalr00ts/action-pre-commit@v0

0 commit comments

Comments
 (0)