docs: add citation #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "test" | |
| # This workflow runs continuous integration tests across multiple platforms and Python versions | |
| # It runs automatically on every push to the repository | |
| # The workflow ensures the code works consistently across different environments | |
| on: | |
| - push | |
| jobs: | |
| # Tests the code on multiple operating systems and Python versions | |
| # The job must pass on all combinations to ensure cross-platform compatibility | |
| test: | |
| # The type of runner that the job will run on | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, windows-latest, macos-latest ] | |
| python-version: [ '3.12', '3.13' ] | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| - name: "Build the virtual environment for ${{ github.repository }}" | |
| uses: cvxgrp/.github/actions/environment@v2.2.8 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: cvxgrp/.github/actions/test@main | |
| with: | |
| tests-folder: 'tests' |