Skip to content

fix: test + fix interactions #64

fix: test + fix interactions

fix: test + fix interactions #64

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install tooling
uses: CompeyDev/[email protected]
with:
cache: true
- name: Check formatting
run: lune run fmt
lint:
runs-on: ubuntu-latest
needs: ["fmt"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install tooling
uses: CompeyDev/[email protected]
with:
cache: true
- name: Lint
run: lune run lint
typecheck:
runs-on: ubuntu-latest
needs: ["lint"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install tooling
uses: CompeyDev/[email protected]
with:
cache: true
- name: Setup lune typedefs
run: lune setup
- name: Typecheck
run: lune run analyze
test:
runs-on: ubuntu-latest
needs: ["typecheck"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Install tooling
uses: CompeyDev/[email protected]
with:
cache: true
- name: Run unit-tests
run: lune run test