Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

chore(main): release 0.2.0 #8

chore(main): release 0.2.0

chore(main): release 0.2.0 #8

Workflow file for this run

---
name: CI
on:
workflow_call:
pull_request:
push:
branches:
- main
jobs:
ci:
name: Run ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: ["lint-mypy", "lint-ruff", "test"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install tools
uses: jdx/mise-action@v2
- name: Run ${{ matrix.target }}
run: make ${{ matrix.target }}