Skip to content

Build from refs/pull/80/merge #276

Build from refs/pull/80/merge

Build from refs/pull/80/merge #276

Workflow file for this run

name: Build
on:
pull_request:
branches: [main, develop]
workflow_dispatch:
permissions:
contents: write
actions: write
pull-requests: write
run-name: Build from ${{ github.ref }}
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py_version: [ "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Setup rust toolchain
uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.75.0
components: rustfmt clippy
- name: Set up Python ${{ matrix.py_version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.py_version }}
- name: Install LLVM
uses: ./.github/actions/install-llvm
with:
os: "ubuntu-20.04"
version: "15"
- name: Build
run: |
pwsh ./build.ps1
shell: pwsh