Skip to content

Add CI workflow (#119) #3

Add CI workflow (#119)

Add CI workflow (#119) #3

Workflow file for this run

name: CI
on:
push:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup mise
uses: jdx/mise-action@v2
with:
experimental: true
- name: Export mise environment
run: |
mise env --json | jq -r 'to_entries | .[] | "\(.key)=\(.value)"' >> $GITHUB_ENV
- name: Build
run: mise run build
- name: Test
run: mise run test