Skip to content

Bump prefix-dev/setup-pixi from 0.9.3 to 0.9.4 #187

Bump prefix-dev/setup-pixi from 0.9.3 to 0.9.4

Bump prefix-dev/setup-pixi from 0.9.3 to 0.9.4 #187

Workflow file for this run

name: Continuous Integration
on:
pull_request:
paths-ignore:
- .github/*
- .gitignore
- README.md
jobs:
ci_linux-64:
name: linux-64 CI
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
environment: ["r43", "r44"]
steps:
- name: Checkout pull request branch
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Create TOML from recipe
run: |
.github/workflows/create_toml_from_yaml.sh ${GITHUB_WORKSPACE}
mkdir /tmp/pixi
mv ${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: Run R CMD CHECK
run: |
pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml build
pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml rcmdcheck
- name: Check unit test code coverage
run: pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml codecov
ci_osx-arm64:
name: osx-arm64 CI
runs-on: macos-14
strategy:
fail-fast: false
matrix:
environment: ["r43", "r44"]
steps:
- name: Checkout pull request branch
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Create TOML from recipe
run: |
.github/workflows/create_toml_from_yaml.sh ${GITHUB_WORKSPACE}
mkdir /tmp/pixi
mv ${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: Run R CMD CHECK
run: |
pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml build
pixi run --environment ${{ matrix.environment }} --manifest-path /tmp/pixi/pixi.toml rcmdcheck