Skip to content

Add GitHub Actions CI Workflow #2

Add GitHub Actions CI Workflow

Add GitHub Actions CI Workflow #2

Workflow file for this run

name: Modulr CI
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: |
3.12
- name: Install Hatch
run: pipx install hatch
- name: Run Hatch CI
run: hatch run test
shell: bash