Skip to content

Commit

Permalink
Setup github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinheghan committed Nov 24, 2024
1 parent b0f39e7 commit a775fc6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Integration Tests

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
validate-code-formatting:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Install devbox
uses: jetify-com/[email protected]
with:
enable-cache: true

- name: Run tests
run: devbox run test

0 comments on commit a775fc6

Please sign in to comment.