fixed format issue for colocboost pipeline #829
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: Continuous Integration | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths-ignore: | |
| - .gitignore | |
| - README.md | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| name: ${{ matrix.platform }} / ${{ matrix.environment }} | |
| runs-on: ${{ matrix.runner }} | |
| timeout-minutes: 30 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runner: [ubuntu-latest, macos-14] | |
| environment: ["r43", "r44"] | |
| include: | |
| - runner: ubuntu-latest | |
| platform: linux-64 | |
| - runner: macos-14 | |
| platform: osx-arm64 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Copy pixi manifest | |
| run: | | |
| mkdir /tmp/pixi | |
| cp ${GITHUB_WORKSPACE}/pixi.toml /tmp/pixi | |
| - name: Setup pixi | |
| uses: prefix-dev/setup-pixi@v0.9.4 | |
| with: | |
| manifest-path: /tmp/pixi/pixi.toml | |
| - name: Run unit tests | |
| run: pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml devtools_test | |
| - name: R CMD check | |
| if: matrix.runner == 'ubuntu-latest' && matrix.environment == 'r44' | |
| run: pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml rcmdcheck | |
| - name: Check unit test code coverage | |
| if: matrix.runner == 'ubuntu-latest' && matrix.environment == 'r44' | |
| run: pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml codecov |