Skip to content

Update release.yml

Update release.yml #2

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
- "daily-test-sync"
pull_request:
workflow_dispatch: {}
workflow_call:
jobs:
build:
if: github.event_name != 'workflow_call'
needs: lint
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
os:
- windows-latest
- ubuntu-latest
- macos-latest
exclude:
- os: windows-latest
python-version: '3.11'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip wheel
pip install --editable .
- name: Test with bikeshed
run: bikeshed --no-update test
lint:
if: github.event_name != 'workflow_call'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: psf/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r .github/workflows/update-tests/requirements.txt
- name: Lint with ruff
run: |
ruff check bikeshed
- name: Lint with pylint
run: |
echo "::add-matcher::.github/workflows/pylint-problem-matcher.json"
pylint bikeshed *.py .github/workflows/update-tests/*.py
- name: Lint with mypy
run: |
mypy
pyinstaller:
strategy:
fail-fast: false
matrix:
include:
# https://packaging.python.org/en/latest/specifications/platform-compatibility-tags/#platform-tag
# target=$(python -c 'import sysconfig; print(sysconfig.get_platform().replace("-", "_").replace(".", "_"))')
- { os: ubuntu-latest, target: linux_x86_64 }
- { os: macos-latest, target: macosx_10_9_universal2 }
- { os: windows-latest, target: win_amd64 }
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- run: pip install -e .
- run: pip install pyinstaller
- run: bikeshed update
# https://pyinstaller.org/en/stable/feature-notes.html#macos-multi-arch-support
- run: |
pyinstaller -y --name=bikeshed --collect-all=bikeshed \
${{ (contains(matrix.target, 'universal2') && '--target-arch=universal2') || '' }} \
./bikeshed.py
- uses: actions/upload-artifact@v4
with:
name: bikeshed-${{ matrix.target }}
path: dist