We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10516b9 commit bce496eCopy full SHA for bce496e
1 file changed
.github/workflows/check.yml
@@ -0,0 +1,28 @@
1
+name: Check
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ check:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ with:
12
+ fetch-depth: 0
13
14
+ - uses: oven-sh/setup-bun@v2
15
16
+ - name: Install BATS
17
+ run: |
18
+ git clone --depth 1 https://github.com/bats-core/bats-core.git /tmp/bats-core
19
+ sudo /tmp/bats-core/install.sh /usr/local
20
21
+ - name: Configure git
22
23
+ git config --global user.name "CI"
24
+ git config --global user.email "ci@localhost"
25
26
+ - run: bun install
27
28
+ - run: bun run check
0 commit comments