Skip to content

fix: pytest plugin to fail tests when anybodycon is not available (#143) #27

fix: pytest plugin to fail tests when anybodycon is not available (#143)

fix: pytest plugin to fail tests when anybodycon is not available (#143) #27

Workflow file for this run

name: Build
on:
workflow_dispatch: {}
pull_request:
push:
branches:
- master
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/setup-pixi@82d477f15f3a381dbcc8adc1206ce643fe110fb7 # v0.9.3
with:
environments: build
- name: Build pypi wheel/sdist
run: pixi run -e build build
- name: Check package
run: pixi run -e build check-wheel
- name: Upload pypi package
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: pypi-artifact
path: dist/*
pypi-release:
name: Publish package to pypi
if: startsWith(github.ref, 'refs/tags/')
needs: [build]
runs-on: ubuntu-latest
permissions:
id-token: write
environment:
name: pypi
url: https://pypi.org/p/anypytools
steps:
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
name: pypi-artifact
path: dist
- name: Publish package on PyPi
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
- name: Create issue on Conda-forge feedstock
uses: peter-evans/create-issue-from-file@v6
with:
token: ${{ secrets.TOKEN_FEEDSTOCK_UPDATE }}
repository: conda-forge/anypytools-feedstock
title: "@conda-forge-admin, please update version"