Skip to content

Re-add cython and setuptools to dev dependencies #113

Re-add cython and setuptools to dev dependencies

Re-add cython and setuptools to dev dependencies #113

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Lint
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
uses: ./.github/workflows/lint.yaml
build:
name: Build
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
uses: ./.github/workflows/build.yaml
release:
name: Release
if: startsWith(github.ref, 'refs/tags/v')
needs:
- lint
- build
uses: ./.github/workflows/release.yaml