Skip to content

Commit 6b6a7f5

Browse files
committed
chore(ci): Add build workflow
1 parent b2aa074 commit 6b6a7f5

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Install devbox
16+
uses: jetify-com/devbox-install-action@a03caf5813591bc882139eba6ae947930a83a427 # v0.11.0
17+
with:
18+
enable-cache: 'true'
19+
- name: Build
20+
run: |
21+
devbox run make

0 commit comments

Comments
 (0)