Skip to content

Bump actions/checkout from 4.1.5 to 4.1.6 in /.github/workflows #47

Bump actions/checkout from 4.1.5 to 4.1.6 in /.github/workflows

Bump actions/checkout from 4.1.5 to 4.1.6 in /.github/workflows #47

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- "*"
pull_request:
paths:
- ".github/workflows/test.yml"
- "conda_subchannel/**"
- "tests/**"
- "pyproject.toml"
- "pixi.lock"
concurrency:
# Concurrency group that uses the workflow name and PR number if available
# or commit SHA as a fallback. If a new build is triggered under that
# concurrency group while a previous build is running it will be canceled.
# Repeated pushes to a PR will cancel all previous builds, while multiple
# merges to main will not cancel.
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
tests:
name: ${{ matrix.os }}, py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["38", "39", "310", "311"]
include:
- os: macos-13
python-version: "310"
- os: macos-14
python-version: "311"
env:
PIXI_ENV_NAME: test-py${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@d72307a91ccc8a856376cdb9ff5b074a04422409 # v0.7.0
with:
environments: ${{ env.PIXI_ENV_NAME }}
- name: Setup project
run: |
pixi run --environment ${{ env.PIXI_ENV_NAME }} dev
- name: Run tests
run: pixi run --environment ${{ env.PIXI_ENV_NAME }} test --basetemp=${{ runner.os == 'Windows' && 'D:\\temp' || runner.temp }}
- name: Build recipe (${{ env.PIXI_ENV_NAME }})
if: matrix.python-version == '310'
run: pixi run build
action:
runs-on: ubuntu-latest
permissions:
contents: write # to deploy to GH Pages automatically
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
fetch-depth: 0
- uses: ./
with:
channel: conda-forge
keep-trees: python=3.9
gh-pages-branch: '' # disable on main