Skip to content

Run tests using github actions. #1

Run tests using github actions.

Run tests using github actions. #1

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
run-tests:
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: Verify formatting
run: devbox run format:check
- name: Run tests
run: devbox run test