Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.11.0 #70
Workflow file for this run
This file contains 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
--- | |
### | |
### Lints all generic and json files in the whole git repository | |
### | |
name: building | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
tags: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: False | |
matrix: | |
version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
name: "[${{ matrix.version }}]" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build source distribution | |
run: | | |
make _build-source_dist PYTHON_VERSION=${version} | |
env: | |
version: ${{ matrix.version }} | |
- name: Build binary distribution | |
run: | | |
make _build-binary_dist PYTHON_VERSION=${version} | |
env: | |
version: ${{ matrix.version }} | |
- name: Build Python package | |
run: | | |
make _build-python_package PYTHON_VERSION=${version} | |
env: | |
version: ${{ matrix.version }} | |
- name: Check Python package | |
run: | | |
make _build-check_python_package PYTHON_VERSION=${version} | |
env: | |
version: ${{ matrix.version }} |