Skip to content

Add getting started section to readme #4370

Add getting started section to readme

Add getting started section to readme #4370

Workflow file for this run

# https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: CI Windows
on:
push:
branches:
- "**"
paths-ignore:
- ".github/workflows/cache_*.yml"
- "docker/dev/**"
pull_request:
branches:
- "**"
paths-ignore:
- ".github/workflows/cache_*.yml"
- "docker/dev/**"
schedule:
# Cron syntax: [minute hour day_of_the_month month day_of_the_week]
- cron: "0 2 * * 0,3" # Run every Sunday and Wednesday at 02:00
workflow_dispatch:
jobs:
build:
name: ${{ matrix.build_type }}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
build_type: ["Release", "Debug"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pixi
uses: prefix-dev/[email protected]
with:
cache: true
- name: Check Lint
run: |
pixi run check-lint
- name: Test DART and dartpy
run: |
$env:DART_VERBOSE = "ON"; `
$env:BUILD_TYPE = "${{ matrix.build_type }}"; `
pixi run test-all
- name: Install
run: |
$env:DART_VERBOSE = "ON"; `
$env:BUILD_TYPE = "${{ matrix.build_type }}"; `
pixi run install