Skip to content

chore: release

chore: release #9

Workflow file for this run

on:
push:
branches:
- "main"
pull_request:
name: C++
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
format:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
environments: format-cpp
- name: Ensure code is properly formatted
run: |
pixi run format-cpp
git diff --exit-code
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macOS-latest, macOS-14, windows-latest ]
runs-on: ${{ matrix.os }}
needs: [ format ]
steps:
- name: Checkout source code
uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
environments: test-cpp
- name: Run the tests
run: |
pixi run test-cpp