Skip to content

fix image link

fix image link #122

Workflow file for this run

name: bird-CI
on:
push:
branches: [main]
paths-ignore:
- '*.md'
- 'README*'
- 'LICENSE'
- 'assets/*'
pull_request:
branches: [main]
paths-ignore:
- '*.md'
- 'README*'
- 'LICENSE'
- 'assets/*'
jobs:
Lint:
name: Lint (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: ['ubuntu-latest']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
pip install black
pip install isort
pip install codespell
- name: Formatting and sorting import
run: |
source .github/linters/formatting.sh
format . true
Test:
name: Test (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
os: ['ubuntu-latest', 'macos-latest']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
pip install pytest
- name: Test mesh
run: |
pytest tests/meshing
- name: Test postProcessing
run: |
pytest tests/postProcess