Skip to content

Commit

Permalink
chore(ci): Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
silvestre committed Aug 22, 2024
1 parent b2aa074 commit 6b6a7f5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on:
pull_request:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/devbox-install-action@a03caf5813591bc882139eba6ae947930a83a427 # v0.11.0
with:
enable-cache: 'true'
- name: Build
run: |
devbox run make

0 comments on commit 6b6a7f5

Please sign in to comment.